Class MultiSelectFirstUntilOtherOp.TakeUntilOtherSubscriber<U>
- java.lang.Object
-
- io.smallrye.mutiny.operators.multi.MultiSelectFirstUntilOtherOp.TakeUntilOtherSubscriber<U>
-
- All Implemented Interfaces:
MultiSubscriber<U>,org.reactivestreams.Subscriber<U>
- Enclosing class:
- MultiSelectFirstUntilOtherOp<T,U>
public static final class MultiSelectFirstUntilOtherOp.TakeUntilOtherSubscriber<U> extends java.lang.Object implements MultiSubscriber<U>
-
-
Constructor Summary
Constructors Constructor Description TakeUntilOtherSubscriber(MultiSelectFirstUntilOtherOp.TakeUntilMainProcessor<?> main)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonCompletion()Method called when the upstream emits acompletionterminal event.voidonFailure(java.lang.Throwable t)Method called when the upstream emits afailureterminal event.voidonItem(U t)Method called when the upstream emits anitemevent, in response to to requests toSubscription.request(long).voidonSubscribe(org.reactivestreams.Subscription s)-
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
-
TakeUntilOtherSubscriber
public TakeUntilOtherSubscriber(MultiSelectFirstUntilOtherOp.TakeUntilMainProcessor<?> main)
-
-
Method Detail
-
onSubscribe
public void onSubscribe(org.reactivestreams.Subscription s)
- Specified by:
onSubscribein interfaceorg.reactivestreams.Subscriber<U>
-
onItem
public void onItem(U t)
Description copied from interface:MultiSubscriberMethod called when the upstream emits anitemevent, in response to to requests toSubscription.request(long).- Specified by:
onItemin interfaceMultiSubscriber<U>- 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
Subscription.request(long)is invoked again.- Specified by:
onFailurein interfaceMultiSubscriber<U>- 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
Subscription.request(long)is invoked again.- Specified by:
onCompletionin interfaceMultiSubscriber<U>
-
-