T - the value typepublic interfaceFlowableSubscriber<T>extendsSubscriber<T>
History: 2.0.7 - experimental; 2.1 - beta
| Modifier and Type | Method and Description |
|---|---|
void | onSubscribe(Subscription s)Implementors of this method should make sure everything that needs to be visible in Subscriber.onNext(Object) is established before callingSubscription.request(long). |
onComplete,onError,onNextvoid onSubscribe(@NonNullSubscription s)
Subscriber.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.onSubscribe in interface Subscriber<T>