Class IgnoringSubscriber
- java.lang.Object
-
- io.smallrye.reactive.messaging.helpers.IgnoringSubscriber
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonComplete()voidonError(Throwable throwable)voidonNext(Message<?> message)voidonSubscribe(org.reactivestreams.Subscription subscription)
-
-
-
Field Detail
-
INSTANCE
public static final org.reactivestreams.Subscriber<Message<?>> INSTANCE
-
-
Method Detail
-
onSubscribe
public void onSubscribe(org.reactivestreams.Subscription subscription)
- Specified by:
onSubscribein interfaceorg.reactivestreams.Subscriber<Message<?>>
-
onError
public void onError(Throwable throwable)
- Specified by:
onErrorin interfaceorg.reactivestreams.Subscriber<Message<?>>
-
onComplete
public void onComplete()
- Specified by:
onCompletein interfaceorg.reactivestreams.Subscriber<Message<?>>
-
-