reswqa commented on code in PR #23927:
URL: https://github.com/apache/flink/pull/23927#discussion_r1452042605


##########
flink-runtime/src/main/java/org/apache/flink/runtime/io/network/partition/hybrid/tiered/storage/BufferAccumulator.java:
##########
@@ -65,4 +63,11 @@ void receive(
      * Close the accumulator. This will flush all the remaining data and 
release all the resources.
      */
     void close();
+
+    /** Represents an operation that accepts three input arguments and returns 
no result. */
+    @FunctionalInterface
+    interface TriConsumer<A, B, C> {

Review Comment:
   Why we need this one instead of `org.apache.flink.util.function.TriConsumer`.



##########
flink-runtime/src/main/java/org/apache/flink/runtime/io/network/partition/hybrid/tiered/storage/BufferAccumulator.java:
##########
@@ -65,4 +63,11 @@ void receive(
      * Close the accumulator. This will flush all the remaining data and 
release all the resources.
      */
     void close();
+
+    /** Represents an operation that accepts three input arguments and returns 
no result. */
+    @FunctionalInterface
+    interface TriConsumer<A, B, C> {

Review Comment:
   Why we need this one instead of `org.apache.flink.util.function.TriConsumer`.



-- 
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: issues-unsubscr...@flink.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to