Interface CheckedBiConsumer<S,T,E extends Exception>
- Type Parameters:
S- first parameter-typeT- second parameter-typeE- exception-type that can be thrown
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Like
BiConsumer but can also throw a checked exception.- Author:
- Owen Feehan
-
Method Summary
-
Method Details
-
accept
Calls the function.- Parameters:
first- first parametersecond- second parameter- Throws:
E- an exception that may be thrown
-