T - the type of the input to the operation@FunctionalInterface public static interface Remote.Consumer<T> extends Consumer<T>, Serializable
Consumer is
expected to operate via side-effects.
This is a functional interface
whose functional method is Consumer.accept(Object).
| Modifier and Type | Method and Description |
|---|---|
default Remote.Consumer<T> |
andThen(Remote.Consumer<? super T> after)
Returns a composed
Consumer that performs, in sequence, this
operation followed by the after operation. |
default Remote.Consumer<T> andThen(Remote.Consumer<? super T> after)
Consumer 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 operationConsumer that performs in sequence this
operation followed by the after operationNullPointerException - if after is null