- java.lang.Object
-
- io.smallrye.mutiny.subscription.SerializedSubscriber<T>
-
- Type Parameters:
T- the type of items
- All Implemented Interfaces:
ContextSupport,MultiSubscriber<T>,java.util.concurrent.Flow.Subscriber<T>,java.util.concurrent.Flow.Subscription
public final class SerializedSubscriber<T> extends java.lang.Object implements java.util.concurrent.Flow.Subscription, MultiSubscriber<T>, ContextSupport
Subscriber that makes sure signals are delivered sequentially in case the onNext, onError or onComplete methods are called concurrently.Class copied from Project Reactor.
-
-
Constructor Summary
Constructors Constructor Description SerializedSubscriber(java.util.concurrent.Flow.Subscriber<? super T> downstream)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcancel()Contextcontext()Provide a context.voidonCompletion()Method called when the upstream emits acompletionterminal event.voidonFailure(java.lang.Throwable t)Method called when the upstream emits afailureterminal event.voidonItem(T t)Method called when the upstream emits anitemevent, in response to to requests toFlow.Subscription.request(long).voidonSubscribe(java.util.concurrent.Flow.Subscription s)voidrequest(long n)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.smallrye.mutiny.subscription.MultiSubscriber
onComplete, onError, onNext
-
-
-
-
Constructor Detail
-
SerializedSubscriber
public SerializedSubscriber(java.util.concurrent.Flow.Subscriber<? super T> downstream)
-
-
Method Detail
-
onSubscribe
public void onSubscribe(java.util.concurrent.Flow.Subscription s)
- Specified by:
onSubscribein interfacejava.util.concurrent.Flow.Subscriber<T>
-
onItem
public void onItem(T t)
Description copied from interface:MultiSubscriberMethod called when the upstream emits anitemevent, in response to to requests toFlow.Subscription.request(long).- Specified by:
onItemin interfaceMultiSubscriber<T>- Parameters:
t- the item, must not benull.
-
onFailure
public void onFailure(java.lang.Throwable t)
Description copied from interface:MultiSubscriberMethod called when the upstream emits afailureterminal event.No further events will be sent even if
Flow.Subscription.request(long)is invoked again.- Specified by:
onFailurein interfaceMultiSubscriber<T>- Parameters:
t- the failure, must not benull.
-
onCompletion
public void onCompletion()
Description copied from interface:MultiSubscriberMethod called when the upstream emits acompletionterminal event.No further events will be sent even if
Flow.Subscription.request(long)is invoked again.- Specified by:
onCompletionin interfaceMultiSubscriber<T>
-
request
public void request(long n)
- Specified by:
requestin interfacejava.util.concurrent.Flow.Subscription
-
cancel
public void cancel()
- Specified by:
cancelin interfacejava.util.concurrent.Flow.Subscription
-
context
public Context context()
Description copied from interface:ContextSupportProvide a context.Since calls to this method shall only be triggered when a Mutiny pipeline uses a
withContextoperator, there is no need in general for caching the context value in a field of the implementing class. Exceptions include operators that have cross-subscriber semantics such as memoizers or broadcasters.This method is expected to be called once per
withContextoperator.- Specified by:
contextin interfaceContextSupport- Returns:
- the context, must not be
null.
-
-