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