public interface TerminalSignalConsumer
Source
and Subscription
.Modifier and Type | Method and Description |
---|---|
default void |
onCancel()
Callback to signal cancellation of the
Subscription for this Subscriber . |
default void |
onComplete()
Callback to signal completion of the
Subscription for this Subscriber . |
default void |
onError(java.lang.Throwable throwable)
Callback to receive an
error for this Subscriber . |
default void onComplete()
Subscription
for this Subscriber
.default void onError(java.lang.Throwable throwable)
error
for this Subscriber
.throwable
- the Exception
observed.default void onCancel()
Subscription
for this Subscriber
.