Class FlowableMaterialize.MaterializeSubscriber<T>
- java.lang.Object
-
- java.lang.Number
-
- java.util.concurrent.atomic.AtomicLong
-
- io.reactivex.rxjava3.internal.subscribers.SinglePostCompleteSubscriber<T,Notification<T>>
-
- io.reactivex.rxjava3.internal.operators.flowable.FlowableMaterialize.MaterializeSubscriber<T>
-
- All Implemented Interfaces:
FlowableSubscriber<T>,java.io.Serializable,org.reactivestreams.Subscriber<T>,org.reactivestreams.Subscription
- Enclosing class:
- FlowableMaterialize<T>
static final class FlowableMaterialize.MaterializeSubscriber<T> extends SinglePostCompleteSubscriber<T,Notification<T>>
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUID-
Fields inherited from class io.reactivex.rxjava3.internal.subscribers.SinglePostCompleteSubscriber
downstream, produced, upstream, value
-
-
Constructor Summary
Constructors Constructor Description MaterializeSubscriber(org.reactivestreams.Subscriber<? super Notification<T>> downstream)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonComplete()protected voidonDrop(Notification<T> n)Called in case of multiple calls to complete.voidonError(java.lang.Throwable t)voidonNext(T t)-
Methods inherited from class io.reactivex.rxjava3.internal.subscribers.SinglePostCompleteSubscriber
cancel, complete, onSubscribe, request
-
Methods inherited from class java.util.concurrent.atomic.AtomicLong
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
-
-
Constructor Detail
-
MaterializeSubscriber
MaterializeSubscriber(org.reactivestreams.Subscriber<? super Notification<T>> downstream)
-
-
Method Detail
-
onNext
public void onNext(T t)
-
onError
public void onError(java.lang.Throwable t)
-
onComplete
public void onComplete()
-
onDrop
protected void onDrop(Notification<T> n)
Description copied from class:SinglePostCompleteSubscriberCalled in case of multiple calls to complete.- Overrides:
onDropin classSinglePostCompleteSubscriber<T,Notification<T>>- Parameters:
n- the value dropped
-
-