Interface StartColumnarWorkerHostOptionsExperimental

interface StartColumnarWorkerHostOptions {
    batchLimits?: ColumnarBatchLimits;
    maxActiveRequests?: number;
    operations: Readonly<Record<string, ColumnarWorkerOperation>>;
    transport: ColumnarWorkerTransport;
}

Properties

batchLimits?: ColumnarBatchLimits
maxActiveRequests?: number

Defensive ceiling for direct protocol callers. Defaults to one.

operations: Readonly<Record<string, ColumnarWorkerOperation>>