Skip to content 

IDocumentDeltaStorageService Interface

Packages > @fluidframework/driver-definitions > IDocumentDeltaStorageService

Interface to provide access to stored deltas for a shared object

Signature:

export interface IDocumentDeltaStorageService 

Methods

List of methods of this class
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

List of parameters
Parameter Type Description
from number
to number

Returns:

Promise<ISequencedDocumentMessage[]>