IDeltasFetchResult Interface
Signature
export interface IDeltasFetchResult
Properties
Property | Type | Description |
---|---|---|
messages | ISequencedDocumentMessage[] | Sequential set of messages starting from 'from' sequence number. May be partial result, i.e. not fulfill original request in full. |
partialResult | boolean | If true, storage only partially fulfilled request, but has more ops If false, the request was fulfilled. If less ops were returned then requested, then storage does not have more ops in this range. |
Property Details
messages
Sequential set of messages starting from 'from' sequence number. May be partial result, i.e. not fulfill original request in full.
Signature
messages: ISequencedDocumentMessage[];
Type: ISequencedDocumentMessage[]
partialResult
If true, storage only partially fulfilled request, but has more ops If false, the request was fulfilled. If less ops were returned then requested, then storage does not have more ops in this range.
Signature
partialResult: boolean;
Type: boolean