Class: DistributedStoreClient
Distributed Store Client (Finsemble Flow)
The Distributed Store Client handles creating, retrieving, and destroying stores. Stores are used to save and retrieve data either locally or globally. This data is not persisted. You can add listeners at multiple levels (store or field), and get the updated data as it's updated in the store. Fields are stored within the store as key/value pair. For more information, see the Distributed Store tutorial.Methods
-
addEventListener(event, handler)
-
Name Type Description eventstring handlerFunction -
createStore(params, cb)
-
Creates a store.
Name Type Description paramsName Type Description globalboolean optional Whether a store is accessible outside of the component it's created in.
persistboolean optional Whether to persist the values of the store to storage. The store must be global to use this flag.
storestring The name of the store.
valuesany optional Starting values for the store.
cbFunction Will return the store on success.
Example
FSBL.Clients.DistributedStoreClient.createStore({ store:"store1", global:false, persist: false, values:{} }, function(error, storeObject){}); -
getStore(params, cb)
-
Retrieve a store if it exists in the local scope, otherwise from the global scope.
Name Type Description paramsName Type Description globalboolean optional Get the store only from the global scope.
storestring optional The name of the store.
cbany Will return the value if found.
Example
FSBL.Clients.DistributedStoreClient.getStore({ store:'store1' }, function(error, storeObject){}); -
removeEventListener(event, handler)
-
Removes an event listener added by addEventListener
Name Type Description eventany An event that was used with addEventListener to add a listener
handlerany The handler that was used with addEventListener for the event
-
removeStore(params, cb)
-
Remove a store. If global is not set and a local store isn't found, Finsemble will remove the global store.
Name Type Description paramsName Type Description globalboolean optional Whether the store you're trying to remove is a global store.
storestring The name of the store.
cbany Callback to be invoked when the store is removed.
Example
FSBL.Clients.DistributedStoreClient.removeStore({ store:"store1", global:true }, function(){});