IDocumentDeltaStorageService Interface
Packages > @fluidframework/driver-definitions > IDocumentDeltaStorageService
Interface to provide access to stored deltas for a shared object
Signature:
export interface IDocumentDeltaStorageService
Methods
Method | Description |
---|---|
get(from, to) | Retrieves all the delta operations within the exclusive sequence number range |
Methods
get
Retrieves all the delta operations within the exclusive sequence number range
Signature:
get(from?: number, to?: number): Promise<ISequencedDocumentMessage[]>;
Parameters
Parameter | Type | Description |
---|---|---|
from | number | |
to | number |
Returns:
Promise<ISequencedDocumentMessage[]>