TDME2 1.9.121
ServerWorkerThreadPool.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
6
9
12
13namespace tdme {
14namespace network {
15namespace udpserver {
16
17class ServerRequest;
18
19/**
20 * @brief Simple server worker thread pool class
21 * @author Andreas Drewke
22 */
23class ServerWorkerThreadPool : public Queue<ServerRequest> {
24 friend class ServerWorkerThread;
25
26public:
27
28 /**
29 * @brief Public constructor
30 * @param startUpBarrier start up barrier
31 * @param workerCount worker count
32 * @param maxElements max elements
33 */
34 ServerWorkerThreadPool(Barrier* startUpBarrier, const unsigned int workerCount, const unsigned int maxElements);
35
36 /**
37 * @brief Public destructor
38 */
40
41 /**
42 * @brief Start worker thread pool
43 */
44 void start();
45
46 /**
47 * @brief Stop worker thread pool
48 */
49 void stop();
50private:
52 unsigned int workerCount;
54};
55
56};
57};
58};
Simple server worker thread pool class.
ServerWorkerThreadPool(Barrier *startUpBarrier, const unsigned int workerCount, const unsigned int maxElements)
Public constructor.
Barrier implementation.
Definition: Barrier.h:21
Consumer/producer queue.
Definition: Queue.h:24
Definition: fwd-tdme.h:4