AHeise commented on a change in pull request #10029: [FLINK-14553][runtime]
Respect non-blocking output in StreamTask#processInput
URL: https://github.com/apache/flink/pull/10029#discussion_r340642180
##########
File path:
flink-runtime/src/main/java/org/apache/flink/runtime/io/network/api/writer/ResultPartitionWriter.java
##########
@@ -35,23 +35,23 @@
* In this case {@link ResultPartitionWriter#fail(Throwable)} still needs to
be called afterwards to fully release
* all resources associated the the partition and propagate failure cause to
the consumer if possible.
*/
-public interface ResultPartitionWriter extends AutoCloseable {
+public abstract class ResultPartitionWriter implements AutoCloseable,
AvailabilityProvider {
Review comment:
Yes no issue, see for example:
```
public interface BlockingDeque<E> extends BlockingQueue<E>, Deque<E> {
```
If this was the only motivation. I'd probably skip this commit.
----------------------------------------------------------------
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:
[email protected]
With regards,
Apache Git Services