#ifndef THREADPOOL_H #define THREADPOOL_H #include #include #include #include #include #include #include using namespace std; class ThreadPool { public: // Constructor. ThreadPool(int threads); // Destructor. ~ThreadPool(); // Adds task to a task queue. void Enqueue(function f); // Shut down the pool. void ShutDown(); private: // Thread pool storage. vector threadPool; // Queue to keep track of incoming tasks. queue> tasks; // Task queue mutex. mutex tasksMutex; // Condition variable. condition_variable condition; // Indicates that pool needs to be shut down. bool terminate; // Indicates that pool has been terminated. bool stopped; // Function that will be invoked by our threads. void Invoke(); }; #endif //THRE