Interface TriConsumer<A,B,C>
- Type Parameters:
A
- The type of the first argument to the operation.B
- The type of the second argument to the operation.C
- The type of the third argument to the operation.
- 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. This is the three-arity specialisation of
Consumer
.
Unlike most other functional interfaces, TriConsumer
is expected to
operate via side effects.
This is a
functional interface
whose functional method is
accept(Object,Object,Object)
.
- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: TriConsumer.java 1060 2023-09-24 19:21:40Z tquadrat $
- Since:
- 0.0.5
- See Also:
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.function.TriConsumer"
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Performs this operation on the given arguments.default TriConsumer
<A, B, C> andThen
(TriConsumer<? super A, ? super B, ? super C> after) Returns a composedTriConsumer
that performs, in sequence, this operation followed by theafter
operation.
-
Method Details
-
accept
Performs this operation on the given arguments.- Parameters:
firstInput
- The first input argument.secondInput
- The second input argument.thirdInput
- The third input argument.
-
andThen
Returns a composed
TriConsumer
that performs, in sequence, this operation followed by theafter
operation. If performing either operation throws an exception, it is relayed to the caller of the composed operation. If performing this operation throws an exception, theafter
operation will not be performed.Both
TriConsumer
s will be called with the same arguments.- Parameters:
after
- The operation to perform after this operation.- Returns:
- A composed
TriConsumer
that performs in sequence this operation followed by theafter
operation.
-