MCPcopy Create free account
hub / github.com/LiteLDev/LeviLamina / ThreadPoolExecutor

Method ThreadPoolExecutor

src/ll/api/thread/ThreadPoolExecutor.cpp:111–113  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

109ThreadPoolExecutor::~ThreadPoolExecutor() = default;
110
111ThreadPoolExecutor::ThreadPoolExecutor(std::string name, size_t nThreads)
112: Executor(std::move(name)),
113 impl(std::make_unique<Impl>(*this, nThreads)) {}
114
115void ThreadPoolExecutor::resize(size_t nThreads) { impl = std::make_unique<Impl>(*this, nThreads); }
116

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected