Themes

Stores/Types/Subscription
Subscription

An interface for creating subscriptions on the store.

Name
Description
Type
delete

Triggered when an item is deleted from the store.

DeleteEventHandler<StoreType>
dispose

Triggered when the dispose method is called on the store.

DisposeEventHandler
get

Triggered when an item is read from the store.

GetEventHandler<StoreType>
insert

Triggered when an item not previously in the store was set.

InsertEventHandler<StoreType>
keys

Triggered when the keys of the store where read. For example, the store is iterated over.

KeysEventHandler
reset

Triggered when the store is reset.

ResetEventHandler
set

Triggered when an item is set in the store (regardless of if it was previously present or not).

SetEventHandler<StoreType>