Package io.smallrye.mutiny.helpers
Class Subscriptions.CancelledSubscriber<X>
- java.lang.Object
-
- io.smallrye.mutiny.helpers.Subscriptions.CancelledSubscriber<X>
-
- All Implemented Interfaces:
org.reactivestreams.Subscriber<X>
- Enclosing class:
- Subscriptions
public static class Subscriptions.CancelledSubscriber<X> extends java.lang.Object implements org.reactivestreams.Subscriber<X>
-
-
Constructor Summary
Constructors Constructor Description CancelledSubscriber()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonComplete()voidonError(java.lang.Throwable t)voidonNext(X o)voidonSubscribe(org.reactivestreams.Subscription s)
-
-
-
Method Detail
-
onSubscribe
public void onSubscribe(org.reactivestreams.Subscription s)
- Specified by:
onSubscribein interfaceorg.reactivestreams.Subscriber<X>
-
onError
public void onError(java.lang.Throwable t)
- Specified by:
onErrorin interfaceorg.reactivestreams.Subscriber<X>
-
onComplete
public void onComplete()
- Specified by:
onCompletein interfaceorg.reactivestreams.Subscriber<X>
-
-