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

Method Wait

cpp/src/arrow/io/caching.cc:234–240  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

232 }
233
234 virtual Future<> Wait() {
235 std::vector<Future<>> futures;
236 for (auto& entry : entries) {
237 futures.emplace_back(MaybeRead(&entry));
238 }
239 return AllComplete(futures);
240 }
241
242 // Return a Future that completes when the given ranges have been read.
243 virtual Future<> WaitFor(std::vector<ReadRange> ranges) {

Callers

nothing calls this directly

Calls 2

AllCompleteFunction · 0.85
emplace_backMethod · 0.80

Tested by

no test coverage detected