Class FlowableDoOnEach.DoOnEachConditionalSubscriber<T>
- java.lang.Object
-
- io.reactivex.rxjava3.internal.subscribers.BasicFuseableConditionalSubscriber<T,T>
-
- io.reactivex.rxjava3.internal.operators.flowable.FlowableDoOnEach.DoOnEachConditionalSubscriber<T>
-
- All Implemented Interfaces:
FlowableSubscriber<T>,ConditionalSubscriber<T>,QueueFuseable<T>,QueueSubscription<T>,SimpleQueue<T>,org.reactivestreams.Subscriber<T>,org.reactivestreams.Subscription
- Enclosing class:
- FlowableDoOnEach<T>
static final class FlowableDoOnEach.DoOnEachConditionalSubscriber<T> extends BasicFuseableConditionalSubscriber<T,T>
-
-
Field Summary
Fields Modifier and Type Field Description (package private) ActiononAfterTerminate(package private) ActiononComplete(package private) Consumer<? super java.lang.Throwable>onError(package private) Consumer<? super T>onNext-
Fields inherited from class io.reactivex.rxjava3.internal.subscribers.BasicFuseableConditionalSubscriber
done, downstream, qs, sourceMode, upstream
-
-
Constructor Summary
Constructors Constructor Description DoOnEachConditionalSubscriber(ConditionalSubscriber<? super T> actual, Consumer<? super T> onNext, Consumer<? super java.lang.Throwable> onError, Action onComplete, Action onAfterTerminate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonComplete()voidonError(java.lang.Throwable t)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.booleantryOnNext(T t)Conditionally takes the value.-
Methods inherited from class io.reactivex.rxjava3.internal.subscribers.BasicFuseableConditionalSubscriber
afterDownstream, beforeDownstream, cancel, clear, fail, isEmpty, offer, offer, onSubscribe, request, transitiveBoundaryFusion
-
-
-
-
Method Detail
-
onNext
public void onNext(T t)
-
tryOnNext
public boolean tryOnNext(T t)
Description copied from interface:ConditionalSubscriberConditionally takes the value.- Parameters:
t- the value to deliver- Returns:
- true if the value has been accepted, false if the value has been rejected and the next value can be sent immediately
-
onError
public void onError(java.lang.Throwable t)
- Specified by:
onErrorin interfaceorg.reactivestreams.Subscriber<T>- Overrides:
onErrorin classBasicFuseableConditionalSubscriber<T,T>
-
onComplete
public void onComplete()
- Specified by:
onCompletein interfaceorg.reactivestreams.Subscriber<T>- Overrides:
onCompletein classBasicFuseableConditionalSubscriber<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.
-
-