Class OperatorDoOnUnsubscribe<T>

    • Constructor Summary

      Constructors 
      Constructor Description
      OperatorDoOnUnsubscribe​(Action0 unsubscribe)
      Constructs an instance of the operator with the callback that gets invoked when the modified Observable is unsubscribed
    • 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

      • unsubscribe

        private final Action0 unsubscribe
    • Constructor Detail

      • OperatorDoOnUnsubscribe

        public OperatorDoOnUnsubscribe​(Action0 unsubscribe)
        Constructs an instance of the operator with the callback that gets invoked when the modified Observable is unsubscribed
        Parameters:
        unsubscribe - The action that gets invoked when the modified Observable is unsubscribed