Class OperatorDoOnSubscribe<T>

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private Action0 subscribe  
    • Constructor Summary

      Constructors 
      Constructor Description
      OperatorDoOnSubscribe​(Action0 subscribe)
      Constructs an instance of the operator with the callback that gets invoked when the modified Observable is subscribed
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      Subscriber<? super T> call​(Subscriber<? super T> child)  
      • Methods inherited from class java.lang.Object

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

      • subscribe

        private final Action0 subscribe
    • Constructor Detail

      • OperatorDoOnSubscribe

        public OperatorDoOnSubscribe​(Action0 subscribe)
        Constructs an instance of the operator with the callback that gets invoked when the modified Observable is subscribed
        Parameters:
        subscribe - the action that gets invoked when the modified Observable is subscribed