Skip to content
Sheetwrite

Sheetwrite / Documentation

SyncPendingQueueLimits@sheetwrite/core

Aggregate ceilings for local commits retained until durable acknowledgement.

Aggregate ceilings for local commits retained until durable acknowledgement.

Members 3

maxPendingCommits Maximum number of pending local commits, including synchronous reservations.
maxPendingCommits: number;
maxPendingOperations Maximum aggregate DocumentOp count across pending local commits.
maxPendingOperations: number;
maxPendingEncodedBytes Maximum aggregate UTF-8 bytes across JSON-encoded pending operation arrays.
maxPendingEncodedBytes: number;

Declaration

View full TypeScript declaration
export interface SyncPendingQueueLimits {
maxPendingCommits: number;
maxPendingOperations: number;
maxPendingEncodedBytes: number;
}