From b10ffbfb3cd4157059c5e84fbd00c09a9439c899 Mon Sep 17 00:00:00 2001 From: Keshava Munegowda Date: Sun, 16 Feb 2020 14:41:15 +0530 Subject: [PATCH] Update README.md Signed-off-by: Keshava Munegowda --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ccc8fdc34..10cfbaa43 100644 --- a/README.md +++ b/README.md @@ -262,7 +262,7 @@ For eclipse, you can generate eclipse project files by running `./gradlew eclips c). Open the storage: [[openStorage](https://kmgowda.github.io/SBK/javadoc/io/sbk/api/Benchmark.html#openStorage-io.sbk.api.Parameters-)] - d). Close the storage:[[openStorage](https://kmgowda.github.io/SBK/javadoc/io/sbk/api/Benchmark.html#closeStorage-io.sbk.api.Parameters-)] + d). Close the storage:[[closeStorage](https://kmgowda.github.io/SBK/javadoc/io/sbk/api/Benchmark.html#closeStorage-io.sbk.api.Parameters-)] e). Create a single writer instance:[[createWriter](https://kmgowda.github.io/SBK/javadoc/io/sbk/api/Benchmark.html#createWriter-int-io.sbk.api.Parameters-)] * Create Writer will be called multiple times by SBK incase of Multi writers are specified in the command line. @@ -273,7 +273,7 @@ For eclipse, you can generate eclipse project files by running `./gradlew eclips g). Get the Data Type :[[getDataType](https://kmgowda.github.io/SBK/javadoc/io/sbk/api/Benchmark.html#getDataType--)] * In case if your data type is byte[] (Byte Array), No need to override this method. see the example: [[Pulsar class](https://github.com/kmgowda/sbk/blob/master/driver-pulsar/src/main/java/io/sbk/Pulsar/Pulsar.java)] * If your Benchmark, Reader and Writer classes operates on different data type such as String or custom data type, then you have to override this default implemenation. - + 4. Implement the Writer Interface: [[Writer](https://kmgowda.github.io/SBK/javadoc/io/sbk/api/Writer.html)]