Packages

p

reactify

reaction

package reaction

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. case class ChangeFunctionReaction[T](f: (T, T) => Unit, priority: Double) extends Reaction[T] with Product with Serializable
  2. case class FunctionReaction[T](f: (T) => Unit, priority: Double) extends Reaction[T] with Product with Serializable
  3. trait Reaction[T] extends Ordered[Reaction[T]]

    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
  5. class Reactions[T] extends AnyRef

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

Value Members

  1. object Reaction
  2. object ReactionStatus

    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