Concrete implementations of Var implement observe.
Concrete implementations of Var implement observe. This is called for each toplevel observe. Depths indicate the relative structural depth of the observation, from the frame of reference of the root call to observe. (Each Var derived via flatMap increases the depth.) Depths are used to order the invocation of update callbacks. This is used to ensure that updates proceed in topological order so that every input variable is fully resolved before recomputing a derived variable.
An Event where changes in Var are emitted.
An Event where changes in Var are emitted. The current value of this Var is emitted synchronously upon subscription.
All changes to this Var are guaranteed to be published to the Event.
Produce an Event reflecting the differences between each update to this Var.
Create a dependent Var which behaves as f
applied to the
current value of this Var.
Create a dependent Var which behaves as f
applied to the
current value of this Var. FlatMap manages a dynamic dependency
graph: the dependent Var is detached and recomputed whenever
the outer Var changes, but only if there are any observers. An
unobserved Var returned by flatMap will not invoke f
Create a derived variable by applying f
to the contained
value.
Create a derived variable by applying f
to the contained
value.
Abstract
Var
class for Java compatibility.