ArrowDecoderFn
type ArrowDecoderFn = (chunks) => Promise<Row[]>;Defined in: spark-session.ts:77
Decodes Arrow IPC byte buffers into plain JavaScript Row objects. Injected by the runtime adapter; the core package has no Arrow dependency.
Parameters
Section titled “Parameters”| Parameter | Type |
|---|---|
chunks | Uint8Array[] |
Returns
Section titled “Returns”Promise<Row[]>