Class FlowableWithLatestFrom.FlowableWithLatestSubscriber
- java.lang.Object
-
- io.reactivex.rxjava3.internal.operators.flowable.FlowableWithLatestFrom.FlowableWithLatestSubscriber
-
- All Implemented Interfaces:
FlowableSubscriber<U>
,org.reactivestreams.Subscriber<U>
- Enclosing class:
- FlowableWithLatestFrom<T,U,R>
final class FlowableWithLatestFrom.FlowableWithLatestSubscriber extends java.lang.Object implements FlowableSubscriber<U>
-
-
Field Summary
Fields Modifier and Type Field Description private FlowableWithLatestFrom.WithLatestFromSubscriber<T,U,R>
wlf
-
Constructor Summary
Constructors Constructor Description FlowableWithLatestSubscriber(FlowableWithLatestFrom.WithLatestFromSubscriber<T,U,R> wlf)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onComplete()
void
onError(java.lang.Throwable t)
void
onNext(U 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)
.
-
-
-
Field Detail
-
wlf
private final FlowableWithLatestFrom.WithLatestFromSubscriber<T,U,R> wlf
-
-
Constructor Detail
-
FlowableWithLatestSubscriber
FlowableWithLatestSubscriber(FlowableWithLatestFrom.WithLatestFromSubscriber<T,U,R> wlf)
-
-
Method Detail
-
onSubscribe
public 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<U>
- Specified by:
onSubscribe
in interfaceorg.reactivestreams.Subscriber<U>
-
onError
public void onError(java.lang.Throwable t)
- Specified by:
onError
in interfaceorg.reactivestreams.Subscriber<U>
-
onComplete
public void onComplete()
- Specified by:
onComplete
in interfaceorg.reactivestreams.Subscriber<U>
-
-