Packages

trait Sync[-A] extends Subscriber[A] with Observer.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).

Source
Subscriber.scala
Linear Supertypes
Observer.Sync[A], Subscriber[A], Observer[A], Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Sync
  2. Sync
  3. Subscriber
  4. Observer
  5. Serializable
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def onComplete(): Unit
    Definition Classes
    Observer
  2. abstract def onError(ex: Throwable): Unit
    Definition Classes
    Observer
  3. abstract 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.

    Definition Classes
    SyncObserver
  4. implicit abstract def scheduler: Scheduler
    Definition Classes
    Subscriber