SharedNumberSequence Class
Packages > fluid-framework > SharedNumberSequence
Deprecated
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)
The SharedNumberSequence holds a sequence of numbers. Each number will be stored at a position within the sequence. See the sequence documentation for details on working with sequences.
Signature:
export declare class SharedNumberSequence extends SharedSequence<number>
Extends: SharedSequence
Constructors
Constructor | Modifiers | Description |
---|---|---|
(constructor)(document, id, attributes) | Constructs a new instance of the SharedNumberSequence class |
Properties
Property | Modifiers | Type | Description |
---|---|---|---|
id |
Methods
Method | Modifiers | Description |
---|---|---|
create(runtime, id) | static |
Create a new shared number sequence |
getFactory() | static |
Get a factory for SharedNumberSequence to register with the data store. |
getRange(start, end) |
Constructors
SharedNumberSequence.(constructor)
Deprecated
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)
Constructs a new instance of the SharedNumberSequence
class
Signature:
constructor(document: IFluidDataStoreRuntime, id: string, attributes: IChannelAttributes);
Parameters
Parameter | Type | Description |
---|---|---|
document | ||
id | ||
attributes |
Properties
id
Signature:
id: string;
Methods
create
Deprecated
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)
Create a new shared number sequence
Signature:
static create(runtime: IFluidDataStoreRuntime, id?: string): SharedNumberSequence;
Parameters
Parameter | Type | Description |
---|---|---|
runtime | data store runtime the new shared number sequence belongs to | |
id | optional name of the shared number sequence |
Returns:
newly create shared number sequence (but not attached yet)
getFactory
Deprecated
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)
Get a factory for SharedNumberSequence to register with the data store.
Signature:
static getFactory(): SharedNumberSequenceFactory;
Returns:
a factory that creates and load SharedNumberSequence
getRange
Deprecated
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:
getRange(start: number, end?: number): number[];
Parameters
Parameter | Type | Description |
---|---|---|
start | ||
end |
Returns: