Readonly idID of the store.
Optional Readonly idName of the property used as ID. If not provided, the 'getIdentity' method must be declared.
Create a new item. Throws an error, if the item already exists. The 'overwrite' option is assumed to be false).
Optional options: CreateOptions<IDType>Retrieves an item by its identifier.
id of an item in the store.
Optional options: GetOptionsoptions to specify the result.
Optional getOptional onRegister event listener for specific events.
name of the event
the event handler callback will be invoked when the event has been emitted
a handle to unregister from the event
Register event listener for any event.
must be "*" for this overload
the event handler callback will be invoked when any event has been emitted
a handle to unregister from the events
Register event listener for the events listed in eventName.
Comma separated event names are possible, for example "eventA,eventB".
the event name or list of names
the event handler callback
a handle to unregister from the event(s)
Saves the given item. Depending on the specified options, a new item is created or a given item is updated.
item to update/create
Optional options: CreateOptions<IDType>options to specify the PUT operation
Queries the store using the provided query.
Optional query: ComplexQueryExpressiona query to execute.
Optional options: QueryOptionsthe query options.
Delete an item by id.
id of item to delete
Generated using TypeDoc
A synchronous store that accepts changes to it's contents.
Deprecated
use WritableAsyncStore instead