30 threadPool(threadPool) {
38 Console::println(
"ServerWorkerThread[" + to_string(
id) +
"]::run(): start");
60 client->
onRequest(frame, messageId, retries);
63 "ServerWorkerThread[" +
65 "]::run(): client: request: " +
66 (RTTI::demangle(
typeid(exception).
name())) +
88 "ServerWorkerThread[" +
90 "]::run(): client: init: " +
91 (RTTI::demangle(
typeid(exception).
name())) +
105 "ServerWorkerThread[" +
107 "]::run(): client: close: " +
108 (RTTI::demangle(
typeid(exception).
name())) +
122 "ServerWorkerThread[" +
124 "]::run(): client: custom: " +
125 (RTTI::demangle(
typeid(exception).
name())) +
139 "ServerWorkerThread[" +
141 "]::run(): group: init: " +
142 (RTTI::demangle(
typeid(exception).
name())) +
156 "ServerWorkerThread[" +
158 "]::run(): group: close: " +
159 (RTTI::demangle(
typeid(exception).
name())) +
173 "ServerWorkerThread[" +
175 "]::run(): group: custom: " +
176 (RTTI::demangle(
typeid(exception).
name())) +
194 Console::println(
"ServerWorkerThread[" + to_string(
id) +
"]::run(): done");
Base class for network server clients.
virtual void shutdown()=0
Shuts down this network client.
virtual void onRequest(stringstream *frame, const uint32_t messageId, const uint8_t retries)=0
To be overwritten with a request handler, will be called from worker.
virtual void onCustom(const string &type)=0
Base class for network server group.
virtual void onCustomEvent(const string &type)=0
Base class for network server groups.
const uint32_t getMessageId()
Returns associated message id (udp server only)
const RequestType getRequestType()
Returns the request type.
const string & getCustomEvent()
void * getObject()
Returns the associated object.
@ REQUESTTYPE_GROUP_CUSTOM
@ REQUESTTYPE_GROUP_CLOSE
@ REQUESTTYPE_CLIENT_INIT
@ REQUESTTYPE_CLIENT_CUSTOM
@ REQUESTTYPE_CLIENT_CLOSE
@ REQUESTTYPE_CLIENT_REQUEST
const uint8_t getMessageRetries()
Returns number of message retries (udp server only)
stringstream * getMessageFrame()
Returns the associated request message frame stream.
Simple server worker thread pool class.
void run()
Thread run method.
ServerWorkerThreadPool * threadPool
virtual ~ServerWorkerThread()
Public destructor.
bool wait()
Waits on barrier.
T * getElement()
Gets an element from this queue, if no element exists yet the calling thread will be blocked until an...
Run time type information utility class.
void releaseReference()
releases a reference, thus decrementing the counter and delete it if reference counter is zero
std::exception Exception
Exception base class.