Interface ColumnarWorkerHandoffExperimental

interface ColumnarWorkerHandoff {
    batch: ColumnarBatchV1;
    kind: "worker";
    operation: string;
    transfer: readonly ArrayBuffer[];
}

Properties

kind
operation: string

Application-owned key registered with startColumnarWorkerHost().

transfer: readonly ArrayBuffer[]