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 long
serialVersionUID
-
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 void
onComplete()
protected void
onDrop(Notification<T> n)
Called in case of multiple calls to complete.void
onError(java.lang.Throwable t)
void
onNext(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:SinglePostCompleteSubscriber
Called in case of multiple calls to complete.- Overrides:
onDrop
in classSinglePostCompleteSubscriber<T,Notification<T>>
- Parameters:
n
- the value dropped
-
-