T - the value typepublic interface FlowableSubscriber<T>
extends org.reactivestreams.Subscriber<T>
| Modifier and Type | Method and Description |
|---|---|
void |
onSubscribe(org.reactivestreams.Subscription s)
Implementors of this method should make sure everything that needs
to be visible in
Subscriber.onNext(Object) is established before
calling Subscription.request(long). |
void onSubscribe(@NonNull org.reactivestreams.Subscription s)
Subscriber.onNext(Object) is established before
calling Subscription.request(long). In practice this means
no initialization should happen after the request() call and
additional behavior is thread safe in respect to onNext.
onSubscribe in interface org.reactivestreams.Subscriber<T>