Deferred Observable Property
This interface is an asynchronous variation to the ObservableProperty. Used if the initial value is undefined. It doesn't provide a value if it hasn't been assigned yet, but you can block the thread until it is.
Types
Functions
Add a ValueChangeListener for value change on this property.
Blocks the current thread to wait for a value if latestValue is null, otherwise returns latestValue immediately.
Blocks the current thread until latestValue is replaced by a new value.
Remove a ValueChangeListener from listeners to value change on this property.
Properties
Extensions
A mapping function applied to each element collected from the ObsrvableProperty to return a DeferredObservableProperty.
A mapping function applied to each element collected from the DeferredObservableProperty.
Conversion method to synchronous ObservableProperty.