Files
lancedb/docs/src/js/functions/RecordBatchIterator.md
S.A.N 20bec61ecb refactor(node): async generator for RecordBatchIterator (#2744)
JS native Async Generator, more efficient asynchronous iteration, fewer
synthetic promises, and the ability to handle `catch` or `break` of
parent loop in `finally` block
2025-10-30 14:36:24 -07:00

410 B

@lancedb/lancedbDocs


@lancedb/lancedb / RecordBatchIterator

Function: RecordBatchIterator()

function RecordBatchIterator(promisedInner): AsyncGenerator<RecordBatch<any>, void, unknown>

Parameters

  • promisedInner: Promise<RecordBatchIterator>

Returns

AsyncGenerator<RecordBatch<any>, void, unknown>