Interface ProcessingBiConsumer<T,U>
- Type Parameters:
T
- The type of the first input argument.U
- The type of the second input argument.
- 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 ProcessingBiConsumer<T,U>
A consumer of data to be processed, which can throw a checked
ProcessingException
.- Author:
- Alejandro González García
- See Also:
BiConsumer
-
Method Details
-
accept
Performs the processing operation on the given arguments.- Parameters:
t
- The first input argument.u
- The second input argument.- Throws:
ProcessingException
-