Class FlowableRepeatWhen.WhenSourceSubscriber<T,U>
- java.lang.Object
-
- java.lang.Number
-
- java.util.concurrent.atomic.AtomicInteger
-
- io.reactivex.rxjava3.internal.subscriptions.SubscriptionArbiter
-
- io.reactivex.rxjava3.internal.operators.flowable.FlowableRepeatWhen.WhenSourceSubscriber<T,U>
-
- All Implemented Interfaces:
FlowableSubscriber<T>
,java.io.Serializable
,org.reactivestreams.Subscriber<T>
,org.reactivestreams.Subscription
- Direct Known Subclasses:
FlowableRepeatWhen.RepeatWhenSubscriber
,FlowableRetryWhen.RetryWhenSubscriber
- Enclosing class:
- FlowableRepeatWhen<T>
abstract static class FlowableRepeatWhen.WhenSourceSubscriber<T,U> extends SubscriptionArbiter implements FlowableSubscriber<T>
-
-
Field Summary
Fields Modifier and Type Field Description protected org.reactivestreams.Subscriber<? super T>
downstream
protected FlowableProcessor<U>
processor
private long
produced
protected org.reactivestreams.Subscription
receiver
private static long
serialVersionUID
-
Fields inherited from class io.reactivex.rxjava3.internal.subscriptions.SubscriptionArbiter
unbounded
-
-
Constructor Summary
Constructors Constructor Description WhenSourceSubscriber(org.reactivestreams.Subscriber<? super T> actual, FlowableProcessor<U> processor, org.reactivestreams.Subscription receiver)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
again(U signal)
void
cancel()
void
onNext(T t)
void
onSubscribe(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)
.-
Methods inherited from class io.reactivex.rxjava3.internal.subscriptions.SubscriptionArbiter
isCancelled, isUnbounded, produced, request, setSubscription
-
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
-
downstream
protected final org.reactivestreams.Subscriber<? super T> downstream
-
processor
protected final FlowableProcessor<U> processor
-
receiver
protected final org.reactivestreams.Subscription receiver
-
produced
private long produced
-
-
Constructor Detail
-
WhenSourceSubscriber
WhenSourceSubscriber(org.reactivestreams.Subscriber<? super T> actual, FlowableProcessor<U> processor, org.reactivestreams.Subscription receiver)
-
-
Method Detail
-
onSubscribe
public final void onSubscribe(org.reactivestreams.Subscription s)
Description copied from interface:FlowableSubscriber
Implementors 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:
onSubscribe
in interfaceFlowableSubscriber<T>
- Specified by:
onSubscribe
in interfaceorg.reactivestreams.Subscriber<T>
-
onNext
public final void onNext(T t)
- Specified by:
onNext
in interfaceorg.reactivestreams.Subscriber<T>
-
again
protected final void again(U signal)
-
cancel
public final void cancel()
- Specified by:
cancel
in interfaceorg.reactivestreams.Subscription
- Overrides:
cancel
in classSubscriptionArbiter
-
-