MCPcopy Create free account
hub / github.com/bytedance/bolt / create

Method create

bolt/exec/Spill.cpp:340–347  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

338}
339
340std::unique_ptr<SpillMergeStream> ConcatFilesSpillMergeStream::create(
341 uint32_t id,
342 std::vector<std::unique_ptr<SpillReadFile>> spillFiles) {
343 auto spillStream = std::unique_ptr<ConcatFilesSpillMergeStream>(
344 new ConcatFilesSpillMergeStream(id, std::move(spillFiles)));
345 spillStream->nextBatch();
346 return spillStream;
347}
348
349uint32_t ConcatFilesSpillMergeStream::id() const {
350 return id_;

Callers

nothing calls this directly

Calls 1

nextBatchMethod · 0.45

Tested by

no test coverage detected