You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by gu...@apache.org on 2020/02/02 22:50:46 UTC

[kafka] branch trunk updated: MINOR: updated documentation where RocksDBStore was being used as the sample class for byte[] versus Bytes examples (#5884)

This is an automated email from the ASF dual-hosted git repository.

guozhang pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 5ddab1b  MINOR: updated documentation where RocksDBStore was being used as the sample class for byte[] versus Bytes examples (#5884)
5ddab1b is described below

commit 5ddab1b60c33ed85315b77ba0ca194814499fc63
Author: Charles Feduke <ch...@gmail.com>
AuthorDate: Sun Feb 2 17:50:03 2020 -0500

    MINOR: updated documentation where RocksDBStore was being used as the sample class for byte[] versus Bytes examples (#5884)
    
    Co-authored-by: Guozhang Wang <wa...@gmail.com>
---
 .../org/apache/kafka/streams/state/internals/StoreChangeLogger.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/streams/src/main/java/org/apache/kafka/streams/state/internals/StoreChangeLogger.java b/streams/src/main/java/org/apache/kafka/streams/state/internals/StoreChangeLogger.java
index ada243d..7358120 100644
--- a/streams/src/main/java/org/apache/kafka/streams/state/internals/StoreChangeLogger.java
+++ b/streams/src/main/java/org/apache/kafka/streams/state/internals/StoreChangeLogger.java
@@ -25,7 +25,7 @@ import org.apache.kafka.streams.state.StateSerdes;
 /**
  * Note that the use of array-typed keys is discouraged because they result in incorrect caching behavior.
  * If you intend to work on byte arrays as key, for example, you may want to wrap them with the {@code Bytes} class,
- * i.e. use {@code RocksDBStore<Bytes, ...>} rather than {@code RocksDBStore<byte[], ...>}.
+ * i.e. use {@code StoreChangeLogger<Bytes, ...>} rather than {@code StoreChangeLogger<byte[], ...>}.
  *
  * @param <K>
  * @param <V>