Spring Boot for VMware GemFire
Interface TriConsumer<T,U,V>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Consumer
like interface accepting 3 arguments.- Since:
- 1.3.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Performs a given operation on the 3 arguments.default TriConsumer<T,
U, V> andThen
(TriConsumer<T, U, V> after)
-
Method Details
-
accept
Performs a given operation on the 3 arguments. -
andThen
- Parameters:
after
-TriConsumer
to composed with thisTriConsumer
; must not be null.- Returns:
- a new
TriConsumer
with the givenTriConsumer
composed after thisTriConsumer
. - Throws:
NullPointerException
- ifTriConsumer
is null.
-