Package io.hstream
Interface Observer<V>
-
public interface Observer<V>An object used to receive results of aQueryer.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonCompleted()Receives a notification of successful completion.voidonError(Throwable t)Receives a terminating error.voidonNext(V value)Receives a value.
-