AHeise commented on a change in pull request #9717: [FLINK-14044] [runtime] Reducing synchronization in AsyncWaitOperator URL: https://github.com/apache/flink/pull/9717#discussion_r329925929
########## File path: flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/TimestampedCollector.java ########## @@ -71,4 +73,19 @@ public void eraseTimestamp() { public void close() { output.close(); } + + @Override + public void emitWatermark(Watermark mark) { + output.emitWatermark(mark); + } + + @Override + public <X> void collect(OutputTag<X> outputTag, StreamRecord<X> record) { Review comment: Opening a separate ticket for that as many code paths are touched. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services