Interface ConditionalSubscriber<T>
- Type Parameters:
T- the value type
- All Superinterfaces:
Flow.Subscriber<T>, FlowableSubscriber<T>
A
FlowableSubscriber with an additional tryOnNext(Object) method that
tells the caller the specified value has been accepted or not.
This allows certain queue-drain or source-drain operators to avoid requesting 1 on behalf of a dropped value.
- Since:
- 3.1.1
-
Method Summary
Methods inherited from interface Flow.Subscriber
onComplete, onError, onNextMethods inherited from interface FlowableSubscriber
onSubscribeModifier and TypeMethodDescriptionvoidImplementors of this method should make sure everything that needs to be visible inFlow.Subscriber.onNext(Object)is established before callingFlow.Subscription.request(long).
-
Method Details
-
tryOnNext
-