Skip to content
Sheetwrite

Sheetwrite / Documentation

TransactionResourceLimits@sheetwrite/core

Public ceilings shared by transaction producers, persistence, transport, and replay.

Public ceilings shared by transaction producers, persistence, transport, and replay. Limits measure the submitted operation array itself, not the logical cell area covered by compact operations.

Members 2

maxOperations Maximum number of DocumentOp objects in one atomic transaction.
maxOperations: number;
maxEncodedBytes Maximum UTF-8 bytes in the JSON-encoded DocumentOp array.
maxEncodedBytes: number;

Declaration

View full TypeScript declaration
export interface TransactionResourceLimits {
maxOperations: number;
maxEncodedBytes: number;
}