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 voidonComplete()voidonError(java.lang.Throwable t)voidonNext(U 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).
-
-
-
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: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<U>- Specified by:
onSubscribein interfaceorg.reactivestreams.Subscriber<U>
-
onError
public void onError(java.lang.Throwable t)
- Specified by:
onErrorin interfaceorg.reactivestreams.Subscriber<U>
-
onComplete
public void onComplete()
- Specified by:
onCompletein interfaceorg.reactivestreams.Subscriber<U>
-
-