Github user StefanRRichter commented on a diff in the pull request:
https://github.com/apache/flink/pull/5423#discussion_r168725762
--- Diff:
flink-runtime/src/main/java/org/apache/flink/runtime/io/network/partition/consumer/InputGate.java
---
@@ -72,7 +73,19 @@
void requestPartitions() throws IOException, InterruptedException;
- BufferOrEvent getNextBufferOrEvent() throws IOException,
InterruptedException;
+ /**
+ * Blocking call waiting for next {@link BufferOrEvent}.
+ *
+ * @return {@code Optional.empty()} if {@link #isFinished()} returns
true.
+ */
+ Optional<BufferOrEvent> getNextBufferOrEvent() throws IOException,
InterruptedException;
--- End diff --
What do you think about this?
---