Class IgnoringSubscriber
- java.lang.Object
-
- io.smallrye.reactive.messaging.providers.helpers.IgnoringSubscriber
-
- All Implemented Interfaces:
Flow.Subscriber<Message<?>>
public class IgnoringSubscriber extends Object implements Flow.Subscriber<Message<?>>
-
-
Field Summary
Fields Modifier and Type Field Description static Flow.Subscriber<Message<?>>INSTANCE
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonComplete()voidonError(Throwable throwable)voidonNext(Message<?> message)voidonSubscribe(Flow.Subscription subscription)
-
-
-
Field Detail
-
INSTANCE
public static final Flow.Subscriber<Message<?>> INSTANCE
-
-
Method Detail
-
onSubscribe
public void onSubscribe(Flow.Subscription subscription)
- Specified by:
onSubscribein interfaceFlow.Subscriber<Message<?>>
-
onError
public void onError(Throwable throwable)
- Specified by:
onErrorin interfaceFlow.Subscriber<Message<?>>
-
onComplete
public void onComplete()
- Specified by:
onCompletein interfaceFlow.Subscriber<Message<?>>
-
onNext
public void onNext(Message<?> message)
- Specified by:
onNextin interfaceFlow.Subscriber<Message<?>>
-
-