monix.reactive.Observer
An Observer.Sync 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).
Observer.Sync
Future
Can be used for optimizations.
Returns either a Continue or a Stop, in response to an elem event being received.
elem
An
Observer.Sync
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.