Package org.apache.flink.util.function
Interface TriConsumer<S,T,U>
-
- Type Parameters:
S
- type of the first argumentT
- type of the second argumentU
- type of the third argument
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@PublicEvolving @FunctionalInterface public interface TriConsumer<S,T,U>
Operation which is performed on three given arguments.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
accept(S s, T t, U u)
Performs this operation on the given arguments.
-