rx

Interface Observer<T>

    • Method Summary

      Modifier and Type Method and Description
      void onCompleted()
      Notifies the Observer that the Observable has finished sending push-based notifications.
      void onError(Throwable e)
      Notifies the Observer that the Observable has experienced an error condition.
      void onNext(T t)
      Provides the Observer with a new item to observe.