59 const string&
getIp()
const;
65 const unsigned int getPort()
const;
71 const string&
getKey()
const;
92 void send(stringstream* frame,
bool safe =
true,
bool deleteFrame =
true);
127 virtual void onRequest(stringstream* frame,
const uint32_t messageId,
const uint8_t retries) = 0;
140 virtual void onFrameReceived(stringstream* frame,
const uint32_t messageId = 0,
const uint8_t retries = 0);
Base class for network server clients.
Base class for network UDP server clients.
void cleanUpSafeMessages()
Clean up safe messages.
void init()
initiates this network client
MessageMapSafe messageMapSafe
static stringstream * createFrame()
Creates a frame to be used with send.
void fireEvent(const string &type)
fires an custom event
void close()
Shuts down this network client.
static const uint64_t MESSAGESSAFE_KEEPTIME
map< uint32_t, Message > MessageMapSafe
uint64_t getRetryTime(const uint8_t retries)
const string & getIp() const
returns client's ip
void shutdown()
Shuts down this network client.
void send(stringstream *frame, bool safe=true, bool deleteFrame=true)
Sends a frame to client, takes over ownership of frame.
const string & getKey() const
Client identification key.
const unsigned int getPort() const
returns client port
virtual void onFrameReceived(stringstream *frame, const uint32_t messageId=0, const uint8_t retries=0)
Event, which will be called if frame has been received, defaults to worker thread pool.
UDPServerIOThread * ioThread
const bool setKey(const string &key)
sets the clients identification key
const uint32_t getClientId()
Get client id.
UDPServer * getServer()
Returns server.
virtual ~UDPServerClient()
public destructor, should only be called implicitly by Reference::releaseReference()
Mutex messageMapSafeMutex
UDPServerClient(const uint32_t clientId, const std::string &ip, const unsigned int port)
public constructor should be called in any subclass of UDPNetworkServer
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.
void sendConnected()
Sends an connect message to client.
volatile bool shutdownRequested
bool processSafeMessage(const uint32_t messageId)
Checks if message has already been processed and sends an acknowlegdement to client / safe client mes...
UDP Network server IO thread.
Base class for network UDP servers.
std::exception Exception
Exception base class.