Interface Emitter<T>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void onError​(java.lang.Throwable t)
      Failed terminal state.
      void onNext​(T t)
      Data notification sent by the Publisher in response to requests to Subscription.request(long).
    • Method Detail

      • onNext

        void onNext​(T t)
        Data notification sent by the Publisher in response to requests to Subscription.request(long).
        Parameters:
        t - the element signaled
      • onError

        void onError​(java.lang.Throwable t)
        Failed terminal state.

        No further events will be sent even if Subscription.request(long) is invoked again.

        Parameters:
        t - the throwable signaled