TDME2 1.9.121
ServerWorkerThreadPool.cpp
Go to the documentation of this file.
2
3#include <tdme/tdme.h>
5
9
10ServerWorkerThreadPool::ServerWorkerThreadPool(Barrier* startUpBarrier, const unsigned int workerCount, const unsigned int maxElements) :
11 Queue<ServerRequest>(maxElements),
12
13 startUpBarrier(startUpBarrier),
14 workerCount(workerCount),
15 worker(NULL) {
16 //
17}
18
20}
21
24 for(unsigned int i = 0; i < workerCount; i++) {
25 worker[i] = new ServerWorkerThread(i, this);
26 worker[i]->start();
27 }
28}
29
31 // stop queue
33
34 // stop worker
35 for(unsigned int i = 0; i < workerCount; i++) {
36 // wait until worker has finished
37 worker[i]->join();
38 // delete worker
39 delete worker[i];
40 }
41 delete [] worker;
42}
Simple server worker thread pool class.
Barrier implementation.
Definition: Barrier.h:21
Consumer/producer queue.
Definition: Queue.h:24
void start()
Starts this objects thread.
Definition: Thread.cpp:65
void join()
Blocks caller thread until this thread has been terminated.
Definition: Thread.cpp:55
Console class.
Definition: Console.h:26