- All Superinterfaces:
Cancellable,Flow.Subscription
- All Known Implementing Classes:
UniSerializedSubscriber
A
Flow.Subscription for the Uni type.
The main different with the Reactive Streams Subscription is about the request protocol. Uni does not use request and triggers the computation at subscription time.
-
Method Summary
-
Method Details
-
cancel
void cancel()Requests theUnito cancel and clean up resources. If the item is retrieved after cancellation, it is not forwarded to the subscriber. If the cancellation happens after the delivery of the item, this call is ignored.Calling this method, emits the
cancellationevent upstream.- Specified by:
cancelin interfaceCancellable- Specified by:
cancelin interfaceFlow.Subscription
-
request
default void request(long n) - Specified by:
requestin interfaceFlow.Subscription
-