Class ConcatMapXMainSubscriber<T>
- java.lang.Object
-
- java.lang.Number
-
- java.util.concurrent.atomic.AtomicInteger
-
- io.reactivex.rxjava3.internal.operators.mixed.ConcatMapXMainSubscriber<T>
-
- Type Parameters:
T- the upstream value type
- All Implemented Interfaces:
FlowableSubscriber<T>,java.io.Serializable,org.reactivestreams.Subscriber<T>
- Direct Known Subclasses:
FlowableConcatMapCompletable.ConcatMapCompletableObserver,FlowableConcatMapMaybe.ConcatMapMaybeSubscriber,FlowableConcatMapSingle.ConcatMapSingleSubscriber
public abstract class ConcatMapXMainSubscriber<T> extends java.util.concurrent.atomic.AtomicInteger implements FlowableSubscriber<T>
Base class for implementing concatMapX main subscribers.- Since:
- 3.0.10
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description (package private) booleancancelled(package private) booleandone(package private) ErrorModeerrorMode(package private) AtomicThrowableerrors(package private) intprefetch(package private) SimpleQueue<T>queueprivate static longserialVersionUID(package private) booleansyncFused(package private) org.reactivestreams.Subscriptionupstream
-
Constructor Summary
Constructors Constructor Description ConcatMapXMainSubscriber(int prefetch, ErrorMode errorMode)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description (package private) voidclearValue()Override this to clear values when the downstream disposes.(package private) abstract voiddisposeInner()Typically, this should beinner.dispose().(package private) abstract voiddrain()Implement the serialized inner subscribing and value emission here.voidonComplete()voidonError(java.lang.Throwable t)voidonNext(T t)voidonSubscribe(org.reactivestreams.Subscription s)Implementors of this method should make sure everything that needs to be visible inSubscriber.onNext(Object)is established before callingSubscription.request(long).(package private) abstract voidonSubscribeDownstream()Typically, this should bedownstream.onSubscribe(this);.(package private) voidstop()-
Methods inherited from class java.util.concurrent.atomic.AtomicInteger
accumulateAndGet, addAndGet, compareAndExchange, compareAndExchangeAcquire, compareAndExchangeRelease, compareAndSet, decrementAndGet, doubleValue, floatValue, get, getAcquire, getAndAccumulate, getAndAdd, getAndDecrement, getAndIncrement, getAndSet, getAndUpdate, getOpaque, getPlain, incrementAndGet, intValue, lazySet, longValue, set, setOpaque, setPlain, setRelease, toString, updateAndGet, weakCompareAndSet, weakCompareAndSetAcquire, weakCompareAndSetPlain, weakCompareAndSetRelease, weakCompareAndSetVolatile
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
errors
final AtomicThrowable errors
-
prefetch
final int prefetch
-
errorMode
final ErrorMode errorMode
-
queue
SimpleQueue<T> queue
-
upstream
org.reactivestreams.Subscription upstream
-
done
volatile boolean done
-
cancelled
volatile boolean cancelled
-
syncFused
boolean syncFused
-
-
Constructor Detail
-
ConcatMapXMainSubscriber
public ConcatMapXMainSubscriber(int prefetch, ErrorMode errorMode)
-
-
Method Detail
-
onSubscribe
public final void onSubscribe(org.reactivestreams.Subscription s)
Description copied from interface:FlowableSubscriberImplementors of this method should make sure everything that needs to be visible inSubscriber.onNext(Object)is established before callingSubscription.request(long). In practice this means no initialization should happen after therequest()call and additional behavior is thread safe in respect toonNext.- Specified by:
onSubscribein interfaceFlowableSubscriber<T>- Specified by:
onSubscribein interfaceorg.reactivestreams.Subscriber<T>
-
onNext
public final void onNext(T t)
- Specified by:
onNextin interfaceorg.reactivestreams.Subscriber<T>
-
onError
public final void onError(java.lang.Throwable t)
- Specified by:
onErrorin interfaceorg.reactivestreams.Subscriber<T>
-
onComplete
public final void onComplete()
- Specified by:
onCompletein interfaceorg.reactivestreams.Subscriber<T>
-
stop
final void stop()
-
clearValue
void clearValue()
Override this to clear values when the downstream disposes.
-
onSubscribeDownstream
abstract void onSubscribeDownstream()
Typically, this should bedownstream.onSubscribe(this);.
-
disposeInner
abstract void disposeInner()
Typically, this should beinner.dispose().
-
drain
abstract void drain()
Implement the serialized inner subscribing and value emission here.
-
-