Class MulticastProcessor.MulticastSubscription<T>

java.lang.Object
java.lang.Number
java.util.concurrent.atomic.AtomicLong
io.reactivex.rxjava3.processors.MulticastProcessor.MulticastSubscription<T>
All Implemented Interfaces:
Serializable, org.reactivestreams.Subscription
Enclosing class:
MulticastProcessor<T>

static final class MulticastProcessor.MulticastSubscription<@NonNull T> extends AtomicLong implements org.reactivestreams.Subscription
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      See Also:
    • downstream

      final org.reactivestreams.Subscriber<? super T> downstream
    • parent

      final MulticastProcessor<T> parent
    • emitted

      long emitted
  • Constructor Details

  • Method Details

    • 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
    • onNext

      void onNext(@NonNull T t)
    • onError

      void onError(Throwable t)
    • onComplete

      void onComplete()