Event
Events only propagate a value when they are changing, when the system is at rest, events have no values.
Note: We hide implicit parameters of the API in the documentation. They are used to ensure correct creation, and you normally do not have to worry about them, except if you accidentally call the implicit parameter list, in which cas you may get cryptic errors. This is a scala limitation. We also hide the internal state parameter of passed and returned events.
Attributes
- T
Value type of the event occurrences.
- Graph
- Supertypes
- Known subtypes
Members list
accessor
Adds an observer.
Adds an observer.
Attributes
- See also:
observe
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
Add an observer.
Add an observer.
Attributes
- Returns:
the resulting rescala.operator.ObserveBundle.Observe can be used to remove the observer.
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
Event operators
Filters the event, only propagating the value when the filter is true.
Filters the event, only propagating the value when the filter is true.
Attributes
- Inherited from:
- EventCompat
Propagates the event only when except does not fire.
Propagates the event only when except does not fire.
Attributes
Merge the event with the other, if both fire simultaneously.
Merge the event with the other, if both fire simultaneously.
Attributes
Collects the results from a partial function
Drop the event parameter; equivalent to map((_: Any) => ())
Drop the event parameter; equivalent to map((_: Any) => ())
Attributes
Filters the event, only propagating the value when the filter is true.
Filters the event, only propagating the value when the filter is true.
Attributes
- Inherited from:
- EventCompat
Flattens the inner value.
Flattens the inner value.
Attributes
Transform the event.
Merge the event with the other into a tuple, if both fire simultaneously.
Merge the event with the other into a tuple, if both fire simultaneously.
Attributes
- See also:
and
Merge the event with the other into a tuple, even if only one of them fired.
Merge the event with the other into a tuple, even if only one of them fired.
Attributes
Events disjunction. Propagates the values if any of the events fires. Only propagates the left event if both fire.
Events disjunction. Propagates the values if any of the events fires. Only propagates the left event if both fire.
Attributes
Event to Signal conversions
Counts the occurrences of the event. The argument of the event is discarded. Always starts from 0 when the count is created (no matter how often the event has activated in the past).
Counts the occurrences of the event. The argument of the event is discarded. Always starts from 0 when the count is created (no matter how often the event has activated in the past).
Attributes
Applies a function on the current value of the signal every time the event occurs, starting with the init value before the first event occurrence
Applies a function on the current value of the signal every time the event occurs, starting with the init value before the first event occurrence
Attributes
Returns a signal which holds the last n events in a list. At the beginning the list increases in size up to when n values are available
Returns a signal which holds the last n events in a list. At the beginning the list increases in size up to when n values are available
Attributes
returns a signal holding the latest value of the event.
returns a signal holding the latest value of the event.
Attributes
- init
initial value of the returned signal
returns a signal holding the latest value of the event.
returns a signal holding the latest value of the event.
Attributes
Holds the latest value of an event as an Option, None before the first event occured
Holds the latest value of an event as an Option, None before the first event occured
Attributes
collects events resulting in a variable holding a list of all values.
collects events resulting in a variable holding a list of all values.
Attributes
reduces events with a given reduce function to create a Signal
reduces events with a given reduce function to create a Signal
Attributes
Switch back and forth between two signals on occurrence of event e
Switch back and forth between two signals on occurrence of event e
Attributes
internal
conversion
Folds events with a given operation to create a Signal.
Type members
Value members
Concrete methods
Uses a partial function onFailure to recover an error carried by the event into a value when returning Some(value),
or filters the error when returning None
Uses a partial function onFailure to recover an error carried by the event into a value when returning Some(value),
or filters the error when returning None
Attributes
Inherited methods
Attributes
- Inherited from:
- EventCompatBundle
Attributes
- Inherited from:
- Disconnectable