Expand description
An implementation of the Observer pattern.
Structsยง
- Observable
Value - A value that implements the Observer pattern.
- Read
Half - The read half of an
ObservableValue
, which can only listen for updates and read the current value. - Subscription
Id - The identifier for a subscription, used to disconnect it when no longer required.
- Write
Half - The write half of an
ObservableValue
, which can write new values.