Object

rescala.operator.SignalBundle

Signals

Related Doc: package SignalBundle

Permalink

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. All

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def dynamic[T](dependencies: of[State]*)(expr: (DynamicTicket) ⇒ T)(implicit ct: CreationTicket): Operators.Signal[T]

    Permalink

    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[of[State]])(expr: (DynamicTicket) ⇒ T)(implicit ct: CreationTicket): Operators.Signal[T]

    Permalink

    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

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

    Permalink
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. def fold[T](dependencies: Set[of[State]], init: T)(expr: (StaticTicket) ⇒ (() ⇒ T) ⇒ T)(implicit ticket: CreationTicket): Operators.Signal[T]

    Permalink
  12. def fromFuture[A](fut: Future[A])(implicit scheduler: Scheduler[State], ec: ExecutionContext, name: ReInfo): Operators.Signal[A]

    Permalink

    converts a future to a signal

    converts a future to a signal

    Annotations
    @cutOutOfUserComputation()
  13. final def getClass(): Class[_]

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

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

    Permalink
    Definition Classes
    Any
  16. def lift[A1, A2, B](n1: Operators.Signal[A1], n2: Operators.Signal[A2])(fun: (A1, A2) ⇒ B)(implicit maybe: CreationTicket): Operators.Signal[B]

    Permalink
    Annotations
    @cutOutOfUserComputation()
  17. def lift[A1, B](n1: Operators.Signal[A1])(fun: (A1) ⇒ B)(implicit maybe: CreationTicket): Operators.Signal[B]

    Permalink
    Annotations
    @cutOutOfUserComputation()
  18. def lift[A, R](los: Seq[Operators.Signal[A]])(fun: (Seq[A]) ⇒ R)(implicit maybe: CreationTicket): Operators.Signal[R]

    Permalink
    Annotations
    @cutOutOfUserComputation()
  19. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  22. def ofUDF[T](udf: Operators.UserDefinedFunction[T, of[State], DynamicTicket])(implicit ct: CreationTicket): Operators.Signal[T]

    Permalink
    Annotations
    @cutOutOfUserComputation()
  23. def stateful[T](dependencies: of[State]*)(expr: (StaticTicket) ⇒ T)(implicit ct: CreationTicket): Operators.Signal[T]

    Permalink

    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 static[T](dependencies: of[State]*)(expr: (StaticTicket[State]) ⇒ T)(implicit ct: CreationTicket): Operators.Signal[T]

    Permalink

    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. def staticNoVarargs[T](dependencies: Seq[of[State]])(expr: (StaticTicket) ⇒ T)(implicit ct: CreationTicket): Operators.Signal[T]

    Permalink

    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()
  26. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  27. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  28. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped