16using std::stringstream;
43 virtual const string&
getIp()
const = 0;
49 virtual const unsigned int getPort()
const = 0;
55 virtual const string&
getKey()
const = 0;
82 virtual void onRequest(stringstream* frame,
const uint32_t messageId,
const uint8_t retries) = 0;
105 virtual void onFrameReceived(stringstream* frame,
const uint32_t messageId = 0,
const uint8_t retries = 0) = 0;
Base class for network server clients.
virtual const unsigned int getPort() const =0
returns client port
stringstream * createFrame()
Creates a frame to be used with send.
virtual const string & getIp() const =0
returns client's ip
virtual void shutdown()=0
Shuts down this network client.
virtual const bool setKey(const string &key)=0
sets the clients identification key
static STATIC_DLL_IMPEXT const char * KEY_PREFIX_UNNAMED
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 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.
virtual const string & getKey() const =0
Client identification key.
virtual void close()=0
Shuts down this network client.
virtual void onCustom(const string &type)=0
Reference counter implementation to be used with inheritance.
std::exception Exception
Exception base class.
#define STATIC_DLL_IMPEXT