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