monifu

reactive

package reactive

Visibility
  1. Public
  2. All

Type Members

  1. trait Channel[-I] extends AnyRef

    A channel is meant for imperative style feeding of events.

  2. trait Observable[+T] extends AnyRef

    Asynchronous implementation of the Observable interface

  3. trait Observer[-T] extends AnyRef

    The Observer from the Rx pattern is the trio of callbacks that get subscribed to an Observable for receiving events.

  4. trait Subject[-I, +T] extends Observable[T] with Observer[I]

    A Subject is a sort of bridge or proxy that acts both as an Observer and as an Observable and that must respect the contract of both.

Value Members

  1. object Observable

  2. package api

  3. package channels

  4. package internals

  5. package observables

  6. package observers

  7. package subjects

Ungrouped