MCPcopy Create free account
hub / github.com/apache/arrow / MakeSerialReadaheadGenerator

Function MakeSerialReadaheadGenerator

cpp/src/arrow/util/async_generator.h:706–709  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

704/// This generator may queue up to max_readahead additional instances of T
705template <typename T>
706AsyncGenerator<T> MakeSerialReadaheadGenerator(AsyncGenerator<T> source_generator,
707 int max_readahead) {
708 return SerialReadaheadGenerator<T>(std::move(source_generator), max_readahead);
709}
710
711/// \brief Create a generator that immediately pulls from the source
712///

Callers 2

ScanBatchesAsyncMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected