Skip to main content
Version: v1

IDataStore Interface

A fluid router with the capability of being assigned an alias

Signature​

export interface IDataStore extends IFluidRouter

Extends: IFluidRouter

Methods​

MethodReturn TypeDescription
trySetAlias(alias)Promise<AliasResult>Attempt to assign an alias to the datastore. If the operation succeeds, the datastore can be referenced by the supplied alias and will not be garbage collected.

Method Details​

trySetAlias​

Attempt to assign an alias to the datastore. If the operation succeeds, the datastore can be referenced by the supplied alias and will not be garbage collected.

Signature​

trySetAlias(alias: string): Promise<AliasResult>;

Parameters​

ParameterTypeDescription
aliasstringGiven alias for this datastore.

Returns​

Return type: Promise<AliasResult>