monix.reactive.observers.Subscriber
A Subscriber.Sync is a Subscriber whose onNext signal is synchronous (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).
Subscriber.Sync
onNext
Future
Returns either a Continue or a Stop, in response to an elem event being received.
elem
A
Subscriber.Sync
is a Subscriber whoseonNext
signal is synchronous (i.e. the upstream observable doesn't need to wait on aFuture
in order to decide whether to send the next event or not).