Map of Key Value pair entries containing values store in this store.
Map of replay subject id to ReplaySubject
instance.
Clear all entries
Returns the number of key value pairs contained.
the number of entries in the store.
Deletes both the value entry and the corresponding {@link ReplaySubject}. Will unsubscribe the {@link ReplaySubject} prior to deleting it, severing communication with corresponding {@link Observable}s.
Check whether a value exists.
True if the entry exists ( Is not null or undefined ) and false otherwise.
Indicates whether the store is empty.
true if the store is empty, false otherwise.
Observe changes to the values.
An {@link Observable} of the value
Set create a key value pair entry and creates a corresponding replay subject instance that will be used to broadcast updates.
The key identifying the value
The value
Update a value and notify subscribers.
Reset the state of the OStore to the values or reset provided in the constructor OStoreStart instance.
Retrieve a snapshot of the value.
A snapshot of the value corresponding to the key.
Generated using TypeDoc
Start keys and values passed in via constructor.