Package org.apache.camel.util.function
Interface ThrowingTriConsumer<I1,I2,I3,T extends Throwable>
- Type Parameters:
I1- the type of the first argument to the operationI2- the type of the second argument to the operationI3- the type of the third argument to the operationT- the type of the exception the accept method may 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 three input arguments and returns no result and may thrown an exception.
-
Method Summary
-
Method Details
-
accept
Applies this function to the given arguments, potentially throwing an exception.- Parameters:
i1- the first argumenti2- the second argumenti3- the third argument- Throws:
T- the exception that may be thrown
-