Package org.apache.flink.util.function
Interface QuadConsumer<S,T,U,V>
-
- Type Parameters:
S- type of the first argumentT- type of the second argumentU- type of the third argumentV- type of the fourth 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 QuadConsumer<S,T,U,V>
Operation which is performed on four given arguments.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaccept(S s, T t, U u, V v)Performs this operation on the given arguments.
-