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 void
onCompleted()
Receives a notification of successful completion.void
onError(Throwable t)
Receives a terminating error.void
onNext(V value)
Receives a value.
-