@FunctionalInterface public interface SerializableBiConsumer<T,U> extends BiConsumer<T,U>, Serializable
BiConsumer.| Modifier and Type | Method and Description |
|---|---|
default SerializableBiConsumer<T,U> |
andThen(SerializableBiConsumer<? super T,? super U> after)
Returns a composed
SerializableBiConsumer that performs, in sequence,
this operation followed by the after operation. |
accept, andThendefault SerializableBiConsumer<T,U> andThen(SerializableBiConsumer<? super T,? super U> after)
SerializableBiConsumer 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 operationSerializableBiConsumer that performs in sequence
this operation followed by the after operationNullPointerException - if after is nullCopyright © 2019. All rights reserved.