You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by vv...@apache.org on 2022/03/24 19:09:36 UTC

[kafka] branch 3.2 updated: MINOR: Add extra notice about IQv2 compatibility (#11944)

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

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


The following commit(s) were added to refs/heads/3.2 by this push:
     new 30c74ae  MINOR: Add extra notice about IQv2 compatibility (#11944)
30c74ae is described below

commit 30c74ae045b044632f589f6389b5b1e9f4365323
Author: John Roesler <vv...@users.noreply.github.com>
AuthorDate: Thu Mar 24 14:04:40 2022 -0500

    MINOR: Add extra notice about IQv2 compatibility (#11944)
    
    Added an extra notice about IQv2's API compatibility, as discussed in the KIP-796 vote thread.
    
    Reviewers: Bill Bejeck <bb...@apache.org>, @Kvicii
---
 streams/src/main/java/org/apache/kafka/streams/KafkaStreams.java | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/streams/src/main/java/org/apache/kafka/streams/KafkaStreams.java b/streams/src/main/java/org/apache/kafka/streams/KafkaStreams.java
index 039fdaf..4333bbb 100644
--- a/streams/src/main/java/org/apache/kafka/streams/KafkaStreams.java
+++ b/streams/src/main/java/org/apache/kafka/streams/KafkaStreams.java
@@ -1772,6 +1772,9 @@ public class KafkaStreams implements AutoCloseable {
      * This method allows callers outside of the Streams runtime to access the internal state of
      * stateful processors. See https://kafka.apache.org/documentation/streams/developer-guide/interactive-queries.html
      * for more information.
+     * <p>
+     * NOTICE: This functionality is {@link Evolving} and subject to change in minor versions.
+     * Once it is stabilized, this notice and the evolving annotation will be removed.
      *
      * @param <R> The result type specified by the query.
      * @throws StreamsNotStartedException If Streams has not yet been started. Just call {@link