mirror of
https://github.com/lancedb/lancedb.git
synced 2026-01-04 02:42:57 +00:00
We aren't yet ready to switch over the examples since almost all JS examples rely on embeddings and we haven't yet ported those over. However, this makes it possible for those that are interested to start using `@lancedb/lancedb`
1.5 KiB
1.5 KiB
@lancedb/lancedb / Exports / RecordBatchIterator
Class: RecordBatchIterator
Implements
AsyncIterator<RecordBatch>
Table of contents
Constructors
Properties
Methods
Constructors
constructor
• new RecordBatchIterator(promise?): RecordBatchIterator
Parameters
| Name | Type |
|---|---|
promise? |
Promise<RecordBatchIterator> |
Returns
Defined in
Properties
inner
• Private Optional inner: RecordBatchIterator
Defined in
promisedInner
• Private Optional promisedInner: Promise<RecordBatchIterator>
Defined in
Methods
next
▸ next(): Promise<IteratorResult<RecordBatch<any>, any>>
Returns
Promise<IteratorResult<RecordBatch<any>, any>>
Implementation of
AsyncIterator.next