TDME2 1.9.121
ServerWorkerThread.h
Go to the documentation of this file.
1#pragma once
2
3#include <stdint.h>
4
5#include <tdme/tdme.h>
8
10
11namespace tdme {
12namespace network {
13namespace udpserver {
14
15class ServerWorkerThreadPool;
16
17/**
18 * @brief Server worker thread
19 * @author Andreas Drewke
20 */
21class ServerWorkerThread : public Thread {
22public:
23 /**
24 * @brief Public constructor
25 * @param id id
26 * @param threadPool thread pool
27 */
29
30 /**
31 * @brief Public destructor
32 */
33 virtual ~ServerWorkerThread();
34
35 /**
36 * @brief Thread run method
37 */
38 void run();
39private:
40 unsigned int id;
42};
43
44};
45};
46};
Simple server worker thread pool class.
ServerWorkerThread(const unsigned int id, ServerWorkerThreadPool *threadPool)
Public constructor.
Base class for threads.
Definition: Thread.h:26
Definition: fwd-tdme.h:4