TDME2 1.9.121
|
#include <tdme/network/udpserver/ServerWorkerThread.h>
Public Member Functions | |
ServerWorkerThread (const unsigned int id, ServerWorkerThreadPool *threadPool) | |
Public constructor. More... | |
virtual | ~ServerWorkerThread () |
Public destructor. More... | |
void | run () |
Thread run method. More... | |
![]() | |
Thread (const string &name, size_t stackSize=2 *1024 *1024) | |
Public constructor. More... | |
virtual | ~Thread () |
Public destructor. More... | |
void | join () |
Blocks caller thread until this thread has been terminated. More... | |
void | start () |
Starts this objects thread. More... | |
virtual void | run ()=0 |
Abstract run() method, should be implemented by subclassed class, will be called after spawn by start() More... | |
void | stop () |
Requests that this thread should be stopped. More... | |
bool | isStopRequested () |
Returns if stop has been requested. More... | |
Private Attributes | |
unsigned int | id |
ServerWorkerThreadPool * | threadPool |
Additional Inherited Members | |
![]() | |
static int | getHardwareThreadCount () |
static void | sleep (const uint64_t milliseconds) |
sleeps current thread for given time in milliseconds More... | |
Server worker thread.
Definition at line 21 of file ServerWorkerThread.h.
ServerWorkerThread | ( | const unsigned int | id, |
ServerWorkerThreadPool * | threadPool | ||
) |
Public constructor.
id | id |
threadPool | thread pool |
Definition at line 27 of file ServerWorkerThread.cpp.
|
virtual |
Public destructor.
Definition at line 34 of file ServerWorkerThread.cpp.
|
virtual |
|
private |
Definition at line 40 of file ServerWorkerThread.h.
|
private |
Definition at line 41 of file ServerWorkerThread.h.