monifu.reactive.observers
A SynchronousObserver is an Observer that signals demand to upstream synchronously (i.e. the upstream observable doesn't need to wait on a Future in order to decide whether to send the next event or not).
SynchronousObserver
Future
Can be used for optimizations.
Returns either a Continue or a Cancel, in response to an elem event being received.
elem
A
SynchronousObserver
is an Observer that signals demand to upstream synchronously (i.e. the upstream observable doesn't need to wait on aFuture
in order to decide whether to send the next event or not).Can be used for optimizations.