Package

reactify

reaction

Permalink

package reaction

Visibility
  1. Public
  2. All

Type Members

  1. case class ChangeFunctionReaction[T](f: (T, T) ⇒ Unit, priority: Double) extends Reaction[T] with Product with Serializable

    Permalink
  2. case class FunctionReaction[T](f: (T) ⇒ Unit, priority: Double) extends Reaction[T] with Product with Serializable

    Permalink
  3. trait Reaction[T] extends Ordered[Reaction[T]]

    Permalink

    Reaction may be considered similar to Observer or Listener in other libraries.

    Reaction may be considered similar to Observer or Listener in other libraries. A Reaction may be added to a Reactive in order to react when a value is fired upon it.

    T

    the type received by this Reaction

  4. trait ReactionStatus extends AnyRef

    Permalink
  5. class Reactions[T] extends AnyRef

    Permalink

    Reactions represents a list of Reaction instances specifically associated with a Reactive

Value Members

  1. object Reaction

    Permalink
  2. object ReactionStatus

    Permalink

    ReactionStatus is utilized during the propagation of a fired value against a Reactive.

    ReactionStatus is utilized during the propagation of a fired value against a Reactive. This value may be returned by a Reaction or set via status on the Reactive (on the same thread while the fired value is propagating)

Ungrouped