pub fn decode_batch_stream<T: Send + 'static>(
record_batch_stream: SendableRecordBatchStream,
decode: fn(_: RecordBatch) -> Vec<T>,
) -> BoxStream<'static, Result<T>>
Expand description
Decode a record batch stream to a stream of items.
pub fn decode_batch_stream<T: Send + 'static>(
record_batch_stream: SendableRecordBatchStream,
decode: fn(_: RecordBatch) -> Vec<T>,
) -> BoxStream<'static, Result<T>>
Decode a record batch stream to a stream of items.