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.
 
Represents an operation that accepts two input arguments and returns no
 result, but can throw a checked exception.  This is the two-arity specialization of
 
CheckedConsumer.
 Unlike most other functional interfaces, BiConsumer is expected
 to operate via side-effects.
 This is a functional interface
 whose functional method is accept(Object, Object).
- See Also:
 
- 
Method Summary
 
- 
Method Details
- 
accept
Performs this operation on the given arguments.- Parameters:
 input1- the first input argument.input2- the second input argument.- Throws:
 E- if an error occurs.
 
 -