Class BehaviorSubject.BehaviorDisposable<T>

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void dispose()
      Dispose the resource, the operation should be idempotent.
      (package private) void emitFirst()  
      (package private) void emitLoop()  
      (package private) void emitNext​(java.lang.Object value, long stateIndex)  
      boolean isDisposed()
      Returns true if this resource has been disposed.
      boolean test​(java.lang.Object o)
      Test the given input value and return a boolean.
      • Methods inherited from class java.lang.Object

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

      • dispose

        public void dispose()
        Description copied from interface: Disposable
        Dispose the resource, the operation should be idempotent.
        Specified by:
        dispose in interface Disposable
      • isDisposed

        public boolean isDisposed()
        Description copied from interface: Disposable
        Returns true if this resource has been disposed.
        Specified by:
        isDisposed in interface Disposable
        Returns:
        true if this resource has been disposed
      • emitFirst

        void emitFirst()
      • emitNext

        void emitNext​(java.lang.Object value,
                      long stateIndex)
      • emitLoop

        void emitLoop()