hermanjakobsen commented on code in PR #19937:
URL: https://github.com/apache/kafka/pull/19937#discussion_r2504943147


##########
streams/src/main/java/org/apache/kafka/streams/processor/internals/GlobalProcessorContextImpl.java:
##########
@@ -130,6 +131,11 @@ public long currentStreamTimeMs() {
      */
     @Override
     public Cancellable schedule(final Duration interval, final PunctuationType 
type, final Punctuator callback) {
+        return schedule(null, interval, type, callback);

Review Comment:
   See https://github.com/apache/kafka/pull/19937#discussion_r2504941061



##########
streams/src/main/java/org/apache/kafka/streams/processor/internals/ProcessorContextImpl.java:
##########
@@ -307,13 +308,22 @@ public void commit() {
     public Cancellable schedule(final Duration interval,
                                 final PunctuationType type,
                                 final Punctuator callback) throws 
IllegalArgumentException {
+        return schedule(null, interval, type, callback);

Review Comment:
   See https://github.com/apache/kafka/pull/19937#discussion_r2504941061



-- 
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