KApolinario1120 commented on code in PR #17973:
URL: https://github.com/apache/kafka/pull/17973#discussion_r1877165559


##########
streams/src/main/java/org/apache/kafka/streams/kstream/Consumed.java:
##########
@@ -55,9 +56,12 @@ public class Consumed<K, V> implements 
NamedOperation<Consumed<K, V>> {
     protected Serde<K> keySerde;
     protected Serde<V> valueSerde;
     protected TimestampExtractor timestampExtractor;
-    protected Topology.AutoOffsetReset resetPolicy;
+    protected AutoOffsetReset resetPolicy;
+    @Deprecated
+    protected Topology.AutoOffsetReset resetPolicy; // Replaced with new 
AutoOffsetReset class introduced in 4.0. 
     protected String processorName;
 
+    @Deprecated

Review Comment:
   Thank you, removed deprecated comment and removed the second constructor. We 
will now just have the updated one that you mentioned in the below comment.



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to