Class DoAfterFirstSubscribe<T>

  • Type Parameters:
    T -
    All Implemented Interfaces:
    io.reactivex.FlowableTransformer<T,​T>

    public class DoAfterFirstSubscribe<T>
    extends java.lang.Object
    implements io.reactivex.FlowableTransformer<T,​T>
    This transformer runs the given action after the first subscription.
    • Constructor Summary

      Constructors 
      Constructor Description
      DoAfterFirstSubscribe​(java.lang.Runnable actionAfterFirstSubscribe)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      org.reactivestreams.Publisher<T> apply​(io.reactivex.Flowable<T> flowable)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • DoAfterFirstSubscribe

        public DoAfterFirstSubscribe​(java.lang.Runnable actionAfterFirstSubscribe)
    • Method Detail

      • apply

        public org.reactivestreams.Publisher<T> apply​(io.reactivex.Flowable<T> flowable)
        Specified by:
        apply in interface io.reactivex.FlowableTransformer<T,​T>