T
- the type of the first argument to the operationU
- the type of the second argument to the operation@FunctionalInterface public interface DistributedBiConsumer<T,U> extends java.util.function.BiConsumer<T,U>, Serializable
DistributedConsumer
.
Unlike most other functional interfaces, BiConsumer
is expected
to operate via side-effects.
This is a functional interface
whose functional method is BiConsumer.accept(Object, Object)
.
DistributedConsumer
Modifier and Type | Method and Description |
---|---|
default DistributedBiConsumer<T,U> |
andThen(DistributedBiConsumer<? super T,? super U> after)
Returns a composed
BiConsumer that performs, in sequence, this
operation followed by the after operation. |
accept, andThen
default DistributedBiConsumer<T,U> andThen(DistributedBiConsumer<? super T,? super U> after)
BiConsumer
that performs, in sequence, this
operation followed by the after
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,
the after
operation will not be performed.after
- the operation to perform after this operationBiConsumer
that performs in sequence this
operation followed by the after
operationNullPointerException
- if after
is nullCopyright © 2017 Hazelcast, Inc.. All Rights Reserved.