You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@kafka.apache.org by "mjsax (via GitHub)" <gi...@apache.org> on 2023/04/13 20:26:43 UTC

[GitHub] [kafka] mjsax commented on a diff in pull request #13554: KAFKA-14834: [7/N] Update VersionedKeyValueStore#put() to return validTo

mjsax commented on code in PR #13554:
URL: https://github.com/apache/kafka/pull/13554#discussion_r1165993027


##########
streams/src/main/java/org/apache/kafka/streams/state/VersionedKeyValueStore.java:
##########
@@ -41,6 +42,9 @@
  */
 public interface VersionedKeyValueStore<K, V> extends StateStore {
 
+    long PUT_RETURN_CODE_VALID_TO_UNDEFINED = -1L;
+    long PUT_RETURN_CODE_NOT_PUT = Long.MIN_VALUE;

Review Comment:
   Should both be `final` ?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: jira-unsubscribe@kafka.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org