object Signals

Functions to construct signals, you probably want to use signal expressions in rescala.interface.RescalaInterface.Signal for a nicer API.

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

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 clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  6. def dynamic[T](dependencies: Operators.ReSource*)(expr: (Operators.DynamicTicket) => T)(implicit ct: Operators.CreationTicket): Operators.Signal[T]

    creates a signal that has dynamic dependencies (which are detected at runtime with Signal.apply(turn))

    creates a signal that has dynamic dependencies (which are detected at runtime with Signal.apply(turn))

    Annotations
    @cutOutOfUserComputation()
  7. def dynamicNoVarargs[T](dependencies: Seq[Operators.ReSource])(expr: (Operators.DynamicTicket) => T)(implicit ct: Operators.CreationTicket): Operators.Signal[T]

    creates a signal that has dynamic dependencies (which are detected at runtime with Signal.apply(turn))

    creates a signal that has dynamic dependencies (which are detected at runtime with Signal.apply(turn))

    Annotations
    @cutOutOfUserComputation()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def fold[T](dependencies: Set[Operators.ReSource], init: T)(expr: (Operators.StaticTicket) => (() => T) => T)(implicit ticket: Operators.CreationTicket): Operators.Signal[T]
  11. def fromFuture[A](fut: Future[A])(implicit fac: Operators.Scheduler, ec: ExecutionContext): Operators.Signal[A]

    converts a future to a signal

    converts a future to a signal

    Annotations
    @cutOutOfUserComputation()
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. def lift[A1, A2, B](n1: Operators.Signal[A1], n2: Operators.Signal[A2])(fun: (A1, A2) => B)(implicit maybe: Operators.CreationTicket): Operators.Signal[B]
  16. def lift[A1, B](n1: Operators.Signal[A1])(fun: (A1) => B)(implicit maybe: Operators.CreationTicket): Operators.Signal[B]
  17. def lift[A, R](los: Seq[Operators.Signal[A]])(fun: (Seq[A]) => R)(implicit maybe: Operators.CreationTicket): Operators.Signal[R]
  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 ofUDF[T](udf: Operators.UserDefinedFunction[T, Operators.ReSource, Operators.DynamicTicket])(implicit ct: Operators.CreationTicket): Operators.Signal[T]
  22. def stateful[T](dependencies: Operators.ReSource*)(expr: (Operators.StaticTicket) => T)(implicit ct: Operators.CreationTicket): Operators.Signal[T]

    creates a new static signal depending on the dependencies, reevaluating the function

    creates a new static signal depending on the dependencies, reevaluating the function

    Annotations
    @cutOutOfUserComputation()
  23. def static[T](dependencies: Operators.ReSource*)(expr: (Operators.StaticTicket) => T)(implicit ct: Operators.CreationTicket): Operators.Signal[T]

    creates a new static signal depending on the dependencies, reevaluating the function

    creates a new static signal depending on the dependencies, reevaluating the function

    Annotations
    @cutOutOfUserComputation()
  24. def staticNoVarargs[T](dependencies: Seq[Operators.ReSource])(expr: (Operators.StaticTicket) => T)(implicit ct: Operators.CreationTicket): Operators.Signal[T]

    creates a new static signal depending on the dependencies, reevaluating the function

    creates a new static signal depending on the dependencies, reevaluating the function

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