IFluidDataStoreRegistry Interface
Packages > @fluidframework/runtime-definitions > IFluidDataStoreRegistry
An association of identifiers to data store registry entries, where the entries can be used to create data stores.
This API is provided for existing users, but is not recommended for new users.
To use, import via @fluidframework/runtime-definitions/legacy
.
For more information about our API support guarantees, see here .
Signature
export interface IFluidDataStoreRegistry extends IProvideFluidDataStoreRegistry
Extends: IProvideFluidDataStoreRegistry
Methods
Method | Alerts | Return Type | Description |
---|---|---|---|
get(name) | Alpha |
Promise<FluidDataStoreRegistryEntry | undefined> |
Method Details
get
This API is provided as an alpha preview and may change without notice.
To use, import via @fluidframework/runtime-definitions/alpha
.
For more information about our API support guarantees, see here .
Signature
get(name: string): Promise<FluidDataStoreRegistryEntry | undefined>;
Parameters
Parameter | Type | Description |
---|---|---|
name | string |
Returns
Return type: Promise<FluidDataStoreRegistryEntry | undefined>