Interface UniSubscription

  • All Superinterfaces:
    Cancellable, java.util.concurrent.Flow.Subscription
    All Known Implementing Classes:
    UniSerializedSubscriber

    public interface UniSubscription
    extends java.util.concurrent.Flow.Subscription, Cancellable
    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 Detail

      • cancel

        void cancel()
        Requests the Uni to 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 cancellation event upstream.

        Specified by:
        cancel in interface Cancellable
        Specified by:
        cancel in interface java.util.concurrent.Flow.Subscription
      • request

        default void request​(long n)
        Specified by:
        request in interface java.util.concurrent.Flow.Subscription