Class ParallelFilter.BaseFilterSubscriber<T>

    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) boolean done  
      (package private) Predicate<? super T> predicate  
      (package private) org.reactivestreams.Subscription upstream  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void cancel()  
      void onNext​(T t)  
      void request​(long n)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface org.reactivestreams.Subscriber

        onComplete, onError
    • Field Detail

      • upstream

        org.reactivestreams.Subscription upstream
      • done

        boolean done
    • Constructor Detail

      • BaseFilterSubscriber

        BaseFilterSubscriber​(Predicate<? super T> predicate)
    • Method Detail

      • request

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

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

        public final void onNext​(T t)
        Specified by:
        onNext in interface org.reactivestreams.Subscriber<T>