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. class GroupReactions[T, R <: Reactive[T]] extends StandardReactions[T]

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

    Permalink

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

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

    T

    the type received by this Reaction

  5. trait ReactionStatus extends AnyRef

    Permalink
  6. trait 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