Package io.smallrye.mutiny.operators
Class UniOnItemTransformToUni.FlatMapSubscription
- java.lang.Object
-
- io.smallrye.mutiny.operators.UniOnItemTransformToUni.FlatMapSubscription
-
- All Implemented Interfaces:
Cancellable,UniSubscription,org.reactivestreams.Subscription
- Enclosing class:
- UniOnItemTransformToUni<I,O>
protected static class UniOnItemTransformToUni.FlatMapSubscription extends java.lang.Object implements UniSubscription
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedFlatMapSubscription()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcancel()Requests theUnito cancel and clean up resources.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.smallrye.mutiny.subscription.UniSubscription
request
-
-
-
-
Method Detail
-
cancel
public void cancel()
Description copied from interface:UniSubscriptionRequests 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 interfaceorg.reactivestreams.Subscription- Specified by:
cancelin interfaceUniSubscription
-
-