Enum SubscriptionHelper

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      CANCELLED
      Represents a cancelled Subscription.
    • Enum Constant Detail

      • CANCELLED

        public static final SubscriptionHelper CANCELLED
        Represents a cancelled Subscription.

        Don't leak this instance!

    • Method Detail

      • values

        public static SubscriptionHelper[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (SubscriptionHelper c : SubscriptionHelper.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static SubscriptionHelper valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • request

        public void request​(long n)
        Specified by:
        request in interface org.reactivestreams.Subscription
      • cancel

        public void cancel()
        Specified by:
        cancel in interface org.reactivestreams.Subscription
      • validate

        public static boolean validate​(org.reactivestreams.Subscription current,
                                       org.reactivestreams.Subscription next)
        Verifies that current is null, next is not null, otherwise signals errors to the RxJavaPlugins and returns false.
        Parameters:
        current - the current Subscription, expected to be null
        next - the next Subscription, expected to be non-null
        Returns:
        true if the validation succeeded
      • reportSubscriptionSet

        public static void reportSubscriptionSet()
        Reports that the subscription is already set to the RxJavaPlugins error handler, which is an indication of a onSubscribe management bug.
      • validate

        public static boolean validate​(long n)
        Validates that the n is positive.
        Parameters:
        n - the request amount
        Returns:
        false if n is non-positive.
      • reportMoreProduced

        public static void reportMoreProduced​(long n)
        Reports to the plugin error handler that there were more values produced than requested, which is a sign of internal backpressure handling bug.
        Parameters:
        n - the overproduction amount
      • setOnce

        public static boolean setOnce​(AtomicReference<org.reactivestreams.Subscription> field,
                                      org.reactivestreams.Subscription s)
        Atomically sets the subscription on the field if it is still null.

        If the field is not null and doesn't contain the CANCELLED instance, the reportSubscriptionSet() is called.

        Parameters:
        field - the target field
        s - the new subscription to set
        Returns:
        true if the operation succeeded, false if the target field was not null.
      • cancel

        public static boolean cancel​(AtomicReference<org.reactivestreams.Subscription> field)
        Atomically swaps in the common cancelled subscription instance and cancels the previous subscription if any.
        Parameters:
        field - the target field to dispose the contents of
        Returns:
        true if the swap from the non-cancelled instance to the common cancelled instance happened in the caller's thread (allows further one-time actions).