Skip to content
Sheetwrite

Sheetwrite / Documentation

PendingCommitLoadOptions@sheetwrite/core

Mandatory bounds for one durable pending-commit restore.

Mandatory bounds for one durable pending-commit restore.

Members 4

signal
signal?: AbortSignal;
maxRecords Maximum records returned for one document queue.
maxRecords: number;
maxOperations Maximum aggregate operation count returned for one document queue.
maxOperations: number;
maxBytes Maximum aggregate UTF-8 bytes of the JSON-encoded operation arrays.
maxBytes: number;

Declaration

View full TypeScript declaration
export interface PendingCommitLoadOptions {
signal?: AbortSignal;
maxRecords: number;
maxOperations: number;
maxBytes: number;
}