21 #ifndef FRAMEWORK_THREAD_POOL_HPP 22 #define FRAMEWORK_THREAD_POOL_HPP 24 #include <condition_variable> 54 return workerThreads.size();
75 void pushWork(std::function<
void()> func);
79 std::thread workerThread;
81 std::condition_variable cond;
83 std::queue<std::function<void()>> workQueue;
84 bool threadIsAlive =
true;
89 std::vector<std::unique_ptr<Worker>> workerThreads;
void setWorkerThreadCount(unsigned workerThreadCount)
Sets the number of worker threads to spawn.
unsigned getWorkerThreadCount() const
Gets the current number of worker threads.
Implements a simple thread pool which can be used to submit rendering work to multiple threads...
void pushWorkToThread(unsigned threadIndex, std::function< void()> func)
Pushes a bundle of work to a thread.
void waitIdle()
Waits for all worker threads to complete all work they have been assigned.