Skip to main content
Version: v1

SharedNumberSequenceFactory Class

This API is deprecated and will be removed in a future release.

SharedNumberSequence is not recommended for use and will be removed in an upcoming release. For more info, please see [Github issue 8526](https://github.com/microsoft/FluidFramework/issues/8526)

Signature

export declare class SharedNumberSequenceFactory implements IChannelFactory

Implements: IChannelFactory

Static Properties

PropertyAlertsTypeDescription
AttributesDeprecatedIChannelAttributes
TypeDeprecatedstring

Static Methods

MethodAlertsReturn TypeDescription
segmentFromSpec(segSpec)DeprecatedSubSequence<number>

Properties

PropertyAlertsTypeDescription
attributesDeprecatedIChannelAttributes
typeDeprecatedstring

Methods

MethodAlertsReturn TypeDescription
create(document, id)DeprecatedISharedObject
load(runtime, id, services, attributes)DeprecatedPromise<ISharedObject>Loads the given channel. This call is only ever invoked internally as the only thing that is ever directly loaded is the document itself. Load will then only be called on documents that were created and added to a channel.

Property Details

attributes

This API is deprecated and will be removed in a future release.

SharedNumberSequence is not recommended for use and will be removed in an upcoming release. For more info, please see [Github issue 8526](https://github.com/microsoft/FluidFramework/issues/8526)

Signature

get attributes(): IChannelAttributes;

Type: IChannelAttributes

Attributes

This API is deprecated and will be removed in a future release.

SharedNumberSequence is not recommended for use and will be removed in an upcoming release. For more info, please see [Github issue 8526](https://github.com/microsoft/FluidFramework/issues/8526)

Signature

static readonly Attributes: IChannelAttributes;

Type: IChannelAttributes

type

This API is deprecated and will be removed in a future release.

SharedNumberSequence is not recommended for use and will be removed in an upcoming release. For more info, please see [Github issue 8526](https://github.com/microsoft/FluidFramework/issues/8526)

Signature

get type(): string;

Type: string

Type

This API is deprecated and will be removed in a future release.

SharedNumberSequence is not recommended for use and will be removed in an upcoming release. For more info, please see [Github issue 8526](https://github.com/microsoft/FluidFramework/issues/8526)

Signature

static Type: string;

Type: string

Method Details

create

This API is deprecated and will be removed in a future release.

SharedNumberSequence is not recommended for use and will be removed in an upcoming release. For more info, please see [Github issue 8526](https://github.com/microsoft/FluidFramework/issues/8526)

Signature

create(document: IFluidDataStoreRuntime, id: string): ISharedObject;

Parameters

ParameterTypeDescription
documentIFluidDataStoreRuntime
idstring

Returns

Return type: ISharedObject

load

Loads the given channel. This call is only ever invoked internally as the only thing that is ever directly loaded is the document itself. Load will then only be called on documents that were created and added to a channel.

This API is deprecated and will be removed in a future release.

SharedNumberSequence is not recommended for use and will be removed in an upcoming release. For more info, please see [Github issue 8526](https://github.com/microsoft/FluidFramework/issues/8526)

Signature

load(runtime: IFluidDataStoreRuntime, id: string, services: IChannelServices, attributes: IChannelAttributes): Promise<ISharedObject>;

Parameters

ParameterTypeDescription
runtimeIFluidDataStoreRuntimeData store runtime containing state/info/helper methods about the data store.
idstringID of the channel.
servicesIChannelServicesServices to read objects at a given path using the delta connection.
attributesIChannelAttributes

Returns

The loaded object

Return type: Promise<ISharedObject>

segmentFromSpec

This API is deprecated and will be removed in a future release.

SharedNumberSequence is not recommended for use and will be removed in an upcoming release. For more info, please see [Github issue 8526](https://github.com/microsoft/FluidFramework/issues/8526)

Signature

static segmentFromSpec(segSpec: IJSONSegment): SubSequence<number>;

Parameters

ParameterTypeDescription
segSpecIJSONSegment

Returns

Return type: SubSequence<number>