object Events

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Events
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. class CBResult[T, R] extends AnyRef
  2. class DynamicFoldMatch[T, +A] extends FoldMatch[A]
  3. sealed trait FoldMatch[+A] extends AnyRef
  4. final class FromCallbackT[T] extends AnyRef
  5. class OnEv[T] extends AnyRef
  6. class OnEvs[T] extends AnyRef
  7. class StaticFoldMatch[T, +A] extends FoldMatch[A]
  8. class StaticFoldMatchDynamic[T, +A] extends FoldMatch[A]

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def change[T](signal: Operators.Signal[T])(implicit ticket: Operators.CreationTicket): Operators.Event[Diff[T]]

    Creates change events

    Creates change events

    Annotations
    @cutOutOfUserComputation()
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  7. def dynamic[T](dependencies: Operators.ReSource*)(expr: (Operators.DynamicTicket) => Option[T])(implicit ticket: Operators.CreationTicket): Operators.Event[T]

    Creates dynamic events

    Creates dynamic events

    Annotations
    @cutOutOfUserComputation()
  8. def dynamicNoVarargs[T](dependencies: Seq[Operators.ReSource])(expr: (Operators.DynamicTicket) => Option[T])(implicit ticket: Operators.CreationTicket): Operators.Event[T]

    Creates dynamic events

    Creates dynamic events

    Annotations
    @cutOutOfUserComputation()
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. def fold[T](dependencies: Set[Operators.ReSource], init: T)(expr: (Operators.DynamicTicket) => (() => T) => T)(implicit ticket: Operators.CreationTicket): Operators.Signal[T]

    Folds events with a given operation to create a Signal.

    Folds events with a given operation to create a Signal.

    Annotations
    @cutOutOfUserComputation()
    See also

    rescala.operator.EventBundle.Event.fold

  12. final def foldAll[A](init: A)(accthingy: (=> A) => Seq[FoldMatch[A]])(implicit ticket: Operators.CreationTicket): Operators.Signal[A]

    Folds when any one of a list of events occurs, if multiple events occur, every fold is executed in order.

    Folds when any one of a list of events occurs, if multiple events occur, every fold is executed in order.

    Example for a counter that can be reset:

    val add: Event[Int]
    val reset: Event[Unit]
    Events.foldAll(0){ current => Seq(
      add act2 { v => current + v },
      reset act2 { _ => 0 }
    )}
    Annotations
    @cutOutOfUserComputation()
  13. def foldOne[A, T](dependency: Operators.Event[A], init: T)(expr: (T, A) => T)(implicit ticket: Operators.CreationTicket): Operators.Signal[T]
  14. def fromCallback[T]: FromCallbackT[T]
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  21. def static[T](dependencies: Operators.ReSource*)(expr: (Operators.StaticTicket) => Option[T])(implicit ticket: Operators.CreationTicket): Operators.Event[T]

    Creates static events

    Creates static events

    Annotations
    @cutOutOfUserComputation()
  22. def staticNamed[T](name: String, dependencies: Operators.ReSource*)(expr: (Operators.StaticTicket) => Pulse[T])(implicit ticket: Operators.CreationTicket): Operators.Event[T]

    the basic method to create static events

    the basic method to create static events

    Annotations
    @cutOutOfUserComputation()
  23. def staticNoVarargs[T](dependencies: Seq[Operators.ReSource])(expr: (Operators.StaticTicket) => Option[T])(implicit ticket: Operators.CreationTicket): Operators.Event[T]

    Creates static events

    Creates static events

    Annotations
    @cutOutOfUserComputation()
  24. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped