com.github.oetzi.echo.core

Switcher

class Switcher[T] extends Behaviour[T]

Switcher represents a Behaviour that's value is always the latest evaluated occurrence in a given Event[Behaviour].

Linear Supertypes
Behaviour[T], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Switcher
  2. Behaviour
  3. AnyRef
  4. Any
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Switcher(behaviour: Behaviour[T], event: Event[Behaviour[T]])

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  8. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  10. def eval(): T

    Evaluates the Behaviour at the current time.

    Evaluates the Behaviour at the current time. The function is atomic with respect to the run-time group of FRP objects so evaluation times are guaranteed to be monotonically increasing (even for Behaviours part of more than one composite Behaviour and for concurrently evaluated Behaviours.)

    Definition Classes
    Behaviour
  11. val event: Event[Behaviour[T]]

  12. def finalize(): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  13. final def getClass(): java.lang.Class[_]

    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  16. def map[B](func: (T) ⇒ B): Behaviour[B]

    Returns a Behaviour that transforms the callee's value with the passed function.

    Returns a Behaviour that transforms the callee's value with the passed function.

    Definition Classes
    Behaviour
  17. def map2[U, V](behaviour: Behaviour[U])(func: (T, U) ⇒ V): Behaviour[V]

    Returns a Behaviour that transforms the callee's and passed Behavior's value with the passed function.

    Returns a Behaviour that transforms the callee's and passed Behavior's value with the passed function.

    Definition Classes
    Behaviour
  18. def map3[U, V, W](beh1: Behaviour[U], beh2: Behaviour[V])(func: (T, U, V) ⇒ W): Behaviour[W]

    Returns a Behaviour that transforms the callee's and passed Behaviors' value with the passed function.

    Returns a Behaviour that transforms the callee's and passed Behaviors' value with the passed function.

    Definition Classes
    Behaviour
  19. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  20. final def notify(): Unit

    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  22. def sample[U](sourceEvent: Event[U]): Event[(U, T)]

    Returns a Event[T] that occurs every time the given Event occurs with the value of the Behaviour at that time.

    Returns a Event[T] that occurs every time the given Event occurs with the value of the Behaviour at that time.

    Definition Classes
    Behaviour
  23. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  24. def toString(): String

    Definition Classes
    AnyRef → Any
  25. def toggle[A](event: Event[A], behaviour: Behaviour[T]): Behaviour[T]

    Returns a Behaviour that toggles between behaving as the callee and the passed Behaviour whenever the passed Event occurs.

    Returns a Behaviour that toggles between behaving as the callee and the passed Behaviour whenever the passed Event occurs.

    Definition Classes
    Behaviour
  26. def until[U](event: Event[U], behaviour: Behaviour[T]): Behaviour[T]

    Returns a Behaviour that behaves as the callee until the Event occurs.

    Returns a Behaviour that behaves as the callee until the Event occurs. It then switches to behaving as the passed Behaviour.

    Definition Classes
    Behaviour
  27. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  28. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  29. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from Behaviour[T]

Inherited from AnyRef

Inherited from Any