Package io.hstream

Interface Observer<V>


  • public interface Observer<V>
    An object used to receive results of a Queryer.
    • Method Detail

      • onNext

        void onNext​(V value)
        Receives a value.
        Parameters:
        value - the value received
      • onError

        void onError​(Throwable t)
        Receives a terminating error.
        Parameters:
        t - the error occurred
      • onCompleted

        void onCompleted()
        Receives a notification of successful completion.