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


##########
streams/src/test/java/org/apache/kafka/test/MockApiProcessor.java:
##########
@@ -46,14 +47,22 @@ public class MockApiProcessor<KIn, VIn, KOut, VOut> 
implements Processor<KIn, VI
     private Cancellable scheduleCancellable;
 
     private final PunctuationType punctuationType;
+    private final Instant startTime;
     private final long scheduleInterval;
 
     private boolean commitRequested = false;
     private ProcessorContext<KOut, VOut> context;
 
     public MockApiProcessor(final PunctuationType punctuationType,
                             final long scheduleInterval) {
+        this(punctuationType, null, scheduleInterval);
+    }
+
+    public MockApiProcessor(final PunctuationType punctuationType,
+                            final Instant startTime,

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