Package org.apache.juneau.utils
Interface Consumer3<A,B,C>  
- Type Parameters:
- A- Argument 1.
- B- Argument 2.
- C- Argument 3.
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Functional interface for consumers of 3-part arguments.
- 
Method Summary
- 
Method Details- 
applyPerforms this operation on the given arguments.- Parameters:
- a- Argument 1.
- b- Argument 2.
- c- Argument 3.
 
- 
andThenReturns a composedConsumerthat performs, in sequence, this operation followed by theafter operation.- Type Parameters:
- V- The return type.
- Parameters:
- after- The operation to perform after this operation.
- Returns:
- A composed Consumerthat performs in sequence this operation followed by the after operation.
 
 
-