Signal
Time changing value derived from the dependencies.
Attributes
- T
Type stored by the signal
- Graph
- Supertypes
- Known subtypes
- class SignalImpl[T]class Var[A]
Members list
accessor
Makes the enclosing reactive expression depend on the current value of the reactive. Is an alias for value.
Makes the enclosing reactive expression depend on the current value of the reactive. Is an alias for value.
Attributes
- See also:
value
- Inherited from:
- MacroAccess
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.
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.
Attributes
add an observer
add an observer
Attributes
Returns the current value of the signal
Returns the current value of the signal
Attributes
Makes the enclosing reactive expression depend on the current value of the reactive. Is an alias for rescala.macros.MacroAccess.apply.
Makes the enclosing reactive expression depend on the current value of the reactive. Is an alias for rescala.macros.MacroAccess.apply.
Attributes
- See also:
apply
- Inherited from:
- MacroAccess
Signal operators
Flattens the inner value.
Flattens the inner value.
Attributes
Return a Signal with f applied to the value
Signal to Event conversions
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
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
Attributes
Create an event that fires every time the signal changes. The value associated to the event is the new value of the signal
Create an event that fires every time the signal changes. The value associated to the event is the new value of the signal
Attributes
Convenience function filtering to events which change this reactive to value
Convenience function filtering to events which change this reactive to value
Attributes
Value members
Concrete methods
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.
Attributes
Inherited methods
Attributes
- Inherited from:
- Disconnectable