Extends
Methods
(async) attach(schemaName, stateIdopt) → {client.SharedState|server.SharedState}
- Description:
Attach to an existing
SharedState
instance.
- Source:
- Inherited From:
- See:
Example
const state = await client.stateManager.attach('my-schema');
Parameters:
Name | Type | Attributes | Default | Description |
---|---|---|---|---|
schemaName |
String | Name of the schema as given on registration (cf. ServerStateManager) |
||
stateId |
Object |
<optional> |
null
|
Id of the state to attach to. If |
Returns:
(async) create(schemaName, initValuesopt) → {client.SharedState|server.SharedState}
- Description:
Create a
SharedState
instance from a registered schema.
- Source:
- Inherited From:
- See:
Example
const state = await client.stateManager.create('my-schema');
Parameters:
Name | Type | Attributes | Default | Description |
---|---|---|---|---|
schemaName |
String | Name of the schema as given on registration (cf. ServerStateManager) |
||
initValues |
Object |
<optional> |
{}
|
Default values for the state. |
Returns:
(async) getCollection(schemaName) → {server.SharedStateCollection|client.SharedStateCollection}
- Description:
Returns a collection of all the states created from the schema name. Except the ones created by the current node.
- Source:
- Inherited From:
Parameters:
Name | Type | Description |
---|---|---|
schemaName |
string | Name of the schema. |
Returns:
(async) observe(schemaNameopt, callback) → {Promise.<function()>}
- Description:
Observe all the
SharedState
instances that are created on the network. This can be usefull for clients with some controller role that might want to track the state of all other clients of the application, to monitor them and/or take control over them from a single point.Notes:
- The states that are created by the same node are not propagated through the observe callback.
- The order of execution is not guaranted, i.e. an state attached in the
observe
callback could be created before theasync create
method resolves.
- Source:
- Inherited From:
Example
client.stateManager.observe(async (schemaName, stateId, nodeId) => {
if (schemaName === 'something') {
const state = await this.client.stateManager.attach(schemaName, stateId);
console.log(state.getValues());
}
});
Parameters:
Name | Type | Attributes | Description |
---|---|---|---|
schemaName |
String |
<optional> |
optionnal schema name to filter the observed states. |
callback |
server.StateManager~ObserveCallback | client.StateManager~ObserveCallback | Function to be called when a new state is created on the network. |
Returns:
- Returns a Promise that resolves when the given callback as been executed on each existing states. The promise value is a function which allows to stop observing the states on the network.
- Type
- Promise.<function()>
Type Definitions
(async) ObserveCallback(schemaName, stateId, nodeId)
- Source:
Parameters:
Name | Type | Description |
---|---|---|
schemaName |
String | name of the schema |
stateId |
Number | id of the state |
nodeId |
Number | id of the node that created the state |