Class FlowableDoAfterNext.DoAfterSubscriber<T>
- java.lang.Object
-
- io.reactivex.rxjava3.internal.subscribers.BasicFuseableSubscriber<T,T>
-
- io.reactivex.rxjava3.internal.operators.flowable.FlowableDoAfterNext.DoAfterSubscriber<T>
-
- All Implemented Interfaces:
FlowableSubscriber<T>,QueueFuseable<T>,QueueSubscription<T>,SimpleQueue<T>,org.reactivestreams.Subscriber<T>,org.reactivestreams.Subscription
- Enclosing class:
- FlowableDoAfterNext<T>
static final class FlowableDoAfterNext.DoAfterSubscriber<T> extends BasicFuseableSubscriber<T,T>
-
-
Field Summary
Fields Modifier and Type Field Description (package private) Consumer<? super T>onAfterNext-
Fields inherited from class io.reactivex.rxjava3.internal.subscribers.BasicFuseableSubscriber
done, downstream, qs, sourceMode, upstream
-
-
Constructor Summary
Constructors Constructor Description DoAfterSubscriber(org.reactivestreams.Subscriber<? super T> actual, Consumer<? super T> onAfterNext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonNext(T t)Tpoll()Tries to dequeue a value (non-null) or returns null if the queue is empty.intrequestFusion(int mode)Request a fusion mode from the upstream.-
Methods inherited from class io.reactivex.rxjava3.internal.subscribers.BasicFuseableSubscriber
afterDownstream, beforeDownstream, cancel, clear, fail, isEmpty, offer, offer, onComplete, onError, onSubscribe, request, transitiveBoundaryFusion
-
-
-
-
Method Detail
-
onNext
public void onNext(T t)
-
requestFusion
public int requestFusion(int mode)
Description copied from interface:QueueFuseableRequest a fusion mode from the upstream.This should be called before
onSubscribereturns.Calling this method multiple times or after
onSubscribefinished is not allowed and may result in undefined behavior.- Parameters:
mode- the requested fusion mode, allowed values areQueueFuseable.SYNC,QueueFuseable.ASYNC,QueueFuseable.ANYcombined withQueueFuseable.BOUNDARY(e.g.,requestFusion(SYNC | BOUNDARY)).- Returns:
- the established fusion mode:
QueueFuseable.NONE,QueueFuseable.SYNC,QueueFuseable.ASYNC.
-
poll
@Nullable public T poll() throws java.lang.Throwable
Description copied from interface:SimpleQueueTries to dequeue a value (non-null) or returns null if the queue is empty.If the producer uses
SimpleQueue.offer(Object, Object)and when polling in pairs, if the first poll() returns a non-null item, the second poll() is guaranteed to return a non-null item as well.- Returns:
- the item or null to indicate an empty queue
- Throws:
java.lang.Throwable- if some pre-processing of the dequeued item (usually through fused functions) throws.
-
-