Base class for network server clients.
More...
#include <tdme/network/udpserver/ServerClient.h>
|
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. More...
|
|
virtual void | onInit ()=0 |
|
virtual void | onClose ()=0 |
|
virtual void | onCustom (const string &type)=0 |
|
virtual void | onFrameReceived (stringstream *frame, const uint32_t messageId=0, const uint8_t retries=0)=0 |
| Event, which will be called if frame has been received, defaults to worker thread pool. More...
|
|
virtual void | close ()=0 |
| Shuts down this network client. More...
|
|
Base class for network server clients.
- Author
- Andreas Drewke
Definition at line 33 of file ServerClient.h.
◆ close()
◆ createFrame()
stringstream * createFrame |
( |
| ) |
|
Creates a frame to be used with send.
- Returns
- frame to be send
Definition at line 12 of file ServerClient.cpp.
◆ getIp()
virtual const string & getIp |
( |
| ) |
const |
|
pure virtual |
◆ getKey()
virtual const string & getKey |
( |
| ) |
const |
|
pure virtual |
Client identification key.
- Returns
- client key
Implemented in UDPServerClient.
◆ getPort()
virtual const unsigned int getPort |
( |
| ) |
const |
|
pure virtual |
◆ onClose()
◆ onCustom()
virtual void onCustom |
( |
const string & |
type | ) |
|
|
protectedpure virtual |
◆ onFrameReceived()
virtual void onFrameReceived |
( |
stringstream * |
frame, |
|
|
const uint32_t |
messageId = 0 , |
|
|
const uint8_t |
retries = 0 |
|
) |
| |
|
protectedpure virtual |
Event, which will be called if frame has been received, defaults to worker thread pool.
- Parameters
-
frame | frame |
messageId | message id (upd server only) |
retries | retries (udp server only) |
Implemented in UDPServerClient.
◆ onInit()
◆ onRequest()
virtual void onRequest |
( |
stringstream * |
frame, |
|
|
const uint32_t |
messageId, |
|
|
const uint8_t |
retries |
|
) |
| |
|
protectedpure virtual |
To be overwritten with a request handler, will be called from worker.
- Parameters
-
frame | frame |
messageId | message id (udp server only) |
retries | retries (udp server only) |
Implemented in UDPServerClient.
◆ setKey()
virtual const bool setKey |
( |
const string & |
key | ) |
|
|
pure virtual |
sets the clients identification key
- Parameters
-
&key | client identification key |
- Returns
- if setting the key was succesful
Implemented in UDPServerClient.
◆ shutdown()
virtual void shutdown |
( |
| ) |
|
|
pure virtual |
◆ ServerWorkerThread
◆ key
◆ KEY_PREFIX_UNNAMED
const char * KEY_PREFIX_UNNAMED = "unnamed." |
|
static |
The documentation for this class was generated from the following files:
- /home/andreas/Development/drewke.net/tdme2/src/tdme/network/udpserver/ServerClient.h
- /home/andreas/Development/drewke.net/tdme2/src/tdme/network/udpserver/ServerClient.cpp