Interface CheckedBiConsumer<T,U,E extends Exception>
-
- Type Parameters:
T- the type of the first argument to the operation.U- the type of the second argument to the operation.E- the type of checked exception the operation might throw.
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface CheckedBiConsumer<T,U,E extends Exception>
Represents an operation that accepts two input arguments and returns no result, but can throw a checked exception. This is the two-arity specialization ofCheckedConsumer. Unlike most other functional interfaces,BiConsumeris expected to operate via side-effects.This is a functional interface whose functional method is
accept(Object, Object).- See Also:
CheckedConsumer,Consumer,BiConsumer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaccept(T input1, U input2)Performs this operation on the given arguments.
-