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