Packages

class SignalImpl[T] extends Operators.DerivedImpl[T] with Operators.Signal[T]

Ordering
  1. Grouped
  2. Alphabetic
  3. By Inheritance
Inherited
  1. SignalImpl
  2. Signal
  3. SignalCompat
  4. ReadableMacro
  5. MacroAccess
  6. ReadAs
  7. DerivedImpl
  8. DisconnectableImpl
  9. Disconnectable
  10. Derived
  11. Base
  12. ReSource
  13. AnyRef
  14. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new SignalImpl(initial: Operators.State[Pulse[T]], expr: (Operators.DynamicTicket, () => T) => T, name: ReName, isDynamicWithStaticDeps: Option[Set[Operators.ReSource]])

    isDynamicWithStaticDeps

    None means static dependencies only, Some means dynamic with the given static ones for optimization

Type Members

  1. final type ReIn = Operators.ReevTicket[Value]
    Definition Classes
    Derived
  2. final type Rout = Operators.Result[Value]
    Definition Classes
    Derived
  3. type Value = Pulse[T]
    Definition Classes
    BaseReSource

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 abortOnError(message: String)(implicit ticket: Operators.CreationTicket): Operators.Signal[T]
    Definition Classes
    Signal
    Annotations
    @cutOutOfUserComputation()
  5. final def apply(): T

    Makes the enclosing reactive expression depend on the current value of the reactive.

    Makes the enclosing reactive expression depend on the current value of the reactive. Is an alias for value.

    Definition Classes
    MacroAccess
    Annotations
    @compileTimeOnly("".+(this).+(" apply can only be used inside of reactive expressions"))
    See also

    value

  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. final def change(implicit ticket: Operators.CreationTicket): Operators.Event[Diff[T]]

    Create an event that fires every time the signal changes.

    Create an event that fires every time the signal changes. It fires the tuple (oldVal, newVal) for the signal. Be aware that no change will be triggered when the signal changes to or from empty

    Definition Classes
    Signal
    Annotations
    @cutOutOfUserComputation()
  8. final def changed(implicit ticket: Operators.CreationTicket): Operators.Event[T]

    Create an event that fires every time the signal changes.

    Create an event that fires every time the signal changes. The value associated to the event is the new value of the signal

    Definition Classes
    Signal
    Annotations
    @cutOutOfUserComputation()
  9. final def changedTo[V >: T](value: V)(implicit ticket: Operators.CreationTicket): Operators.Event[Unit]

    Convenience function filtering to events which change this reactive to value

    Convenience function filtering to events which change this reactive to value

    Definition Classes
    Signal
    Annotations
    @cutOutOfUserComputation()
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  11. def commit(base: Value): Value
    Attributes
    protected[rescala]
    Definition Classes
    SignalReSource
  12. def computePulse(rein: Operators.ReevTicket[Pulse[T]]): Pulse[T]
    Attributes
    protected[this]
    Definition Classes
    SignalImplDerivedImpl
  13. final def disconnect(): Unit
    Definition Classes
    DisconnectableImplDisconnectable
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  16. final def flatten[R](implicit flatten: Operators.Flatten[Operators.Signal[T], R]): R

    Flattens the inner value.

    Flattens the inner value.

    Definition Classes
    Signal
    Annotations
    @cutOutOfUserComputation()
  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  18. def guardedReevaluate(rein: ReIn): Rout
    Attributes
    protected[rescala]
    Definition Classes
    DerivedImplDisconnectableImpl
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. final macro def map[B](expression: (T) => B)(implicit ticket: Operators.CreationTicket): Operators.Signal[B]

    Return a Signal with f applied to the value

    Return a Signal with f applied to the value

    Definition Classes
    SignalCompat
    Annotations
    @cutOutOfUserComputation()
  22. val name: ReName
    Definition Classes
    BaseReSource
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  26. final def now(implicit scheduler: Operators.Scheduler): T

    Returns the current value of the signal However, using now is in most cases not what you want.

    Returns the current value of the signal However, using now is in most cases not what you want. It does not build dependencies, does not integrate into transactions. Use only for examples and debug output.

    Definition Classes
    Signal
  27. final def observe(onValue: (T) => Unit, onError: (Throwable) => Unit = null, fireImmediately: Boolean = true)(implicit ticket: Operators.CreationTicket): Operators.Disconnectable

    add an observer

    add an observer

    Definition Classes
    Signal
  28. def read(v: Value): T

    Interprets the internal type to the external type

    Interprets the internal type to the external type

    Definition Classes
    SignalReadAs
  29. final def readValueOnce(implicit scheduler: Operators.Scheduler): T

    Returns the current value of the signal

    Returns the current value of the signal

    Definition Classes
    Signal
  30. final def recover[R >: T](onFailure: PartialFunction[Throwable, R])(implicit ticket: Operators.CreationTicket): Operators.Signal[R]

    Uses a partial function onFailure to recover an error carried by the event into a value.

    Uses a partial function onFailure to recover an error carried by the event into a value.

    Definition Classes
    Signal
    Annotations
    @cutOutOfUserComputation()
  31. final def reevaluate(rein: ReIn): Rout

    called if any of the dependencies (rescala.core.Core.ReSources) changed in the current update turn, after all (known) dependencies are updated

    called if any of the dependencies (rescala.core.Core.ReSources) changed in the current update turn, after all (known) dependencies are updated

    Attributes
    protected[rescala]
    Definition Classes
    DisconnectableImplDerived
  32. def resource: Operators.ReadAs[T]
    Definition Classes
    SignalMacroAccess
  33. val state: Operators.State[Pulse[T]]
    Attributes
    protected[rescala]
    Definition Classes
    BaseReSource
  34. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  35. def toString(): String
    Definition Classes
    Base → AnyRef → Any
  36. final def value: T

    Makes the enclosing reactive expression depend on the current value of the reactive.

    Makes the enclosing reactive expression depend on the current value of the reactive. Is an alias for rescala.macros.MacroAccess.apply.

    Definition Classes
    MacroAccess
    Annotations
    @compileTimeOnly("value can only be used inside of reactive expressions")
    See also

    apply

  37. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  38. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  39. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  40. final def withDefault[R >: T](value: R)(implicit ticket: Operators.CreationTicket): Operators.Signal[R]
    Definition Classes
    Signal
    Annotations
    @cutOutOfUserComputation()

Deprecated Value Members

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

Inherited from Operators.Signal[T]

Inherited from Operators.SignalCompat[T]

Inherited from Operators.ReadableMacro[T]

Inherited from MacroAccess[T, Operators.ReadAs[T]]

Inherited from Operators.ReadAs[T]

Inherited from Operators.DerivedImpl[T]

Inherited from Operators.Derived

Inherited from Operators.Base[Pulse[T]]

Inherited from Operators.ReSource

Inherited from AnyRef

Inherited from Any

internal

Accessor and observers

Signal operators

Signal to Event conversions

Ungrouped