ChangeEventImpl
Attributes
- Graph
- Supertypes
- trait DisconnectableImpltrait Disconnectabletrait Derivedtrait ReSourceclass Objecttrait Matchableclass Any
Members list
internal
conversion
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
- Inherited from:
- Event
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
- Inherited from:
- Event
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
- Inherited from:
- Event
returns a signal holding the latest value of the event.
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
- Inherited from:
- Event
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
- Inherited from:
- Event
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
- Inherited from:
- Event
reduces events with a given reduce function to create a Signal
conversion
Folds events with a given operation to create a Signal.
accessor
Adds an observer.
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.
- Inherited from:
- Event
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
operator
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.
Merge the event with the other, if both fire simultaneously.
Collects the results from a partial function
Drop the event parameter; equivalent to map((_: Any) => ())
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.
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
- Inherited from:
- Event
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
- Inherited from:
- Event
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
- Inherited from:
- Event
Type members
Value members
Concrete methods
Inherited methods
Attributes
- Inherited from:
- DisconnectableImpl
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 from:
- Event