Sync

trait Sync[-A] extends Subscriber[A] with Sync[A]

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).

Companion:
object
trait Sync[A]
trait Subscriber[A]
trait Observer[A]
trait Serializable
class Object
trait Matchable
class Any

Value members

Inherited methods

Inherited from:
Observer
Inherited from:
Observer
def onNext(elem: A): Ack

Returns either a Continue or a Stop, in response to an elem event being received.

Returns either a Continue or a Stop, in response to an elem event being received.

Inherited from:
Sync

Implicits

Inherited implicits

implicit def scheduler: Scheduler
Inherited from:
Subscriber