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

Function MakeFromFuture

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

Source from the content-addressed store, hash-verified

691/// This generator does not queue
692template <typename T>
693AsyncGenerator<T> MakeFromFuture(Future<AsyncGenerator<T>> future) {
694 return FutureFirstGenerator<T>(std::move(future));
695}
696
697/// \brief Create a generator that will pull from the source into a queue. Unlike
698/// MakeReadaheadGenerator this will not pull reentrantly from the source.

Callers 4

GeneratorFromReaderFunction · 0.85
ScanBatchesAsyncMethod · 0.85
ScanBatchesAsyncMethod · 0.85
TEST_PFunction · 0.85

Calls

no outgoing calls

Tested by 1

TEST_PFunction · 0.68