TDME2 1.9.121
ServerClientRequestHandler.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
4
5#include <string>
6
8
9using std::string;
10
12
13namespace tdme {
14namespace network {
15namespace udpserver {
16
17/**
18 * @brief Network client request handler base class
19 * @author Andreas Drewke
20 */
21template <class CLIENT, class REQUEST>
23public:
24 /**
25 * @brief Public constructor
26 */
27 ServerClientRequestHandler(const std::string& command) {
28 this->command = command;
29 }
30
31 /**
32 * @brief Public destructor
33 */
35 }
36
37 /**
38 * @brief Returns this requests handler command name
39 */
40 const string& getCommand() {
41 return command;
42 }
43
44 /**
45 * @brief Request handler implementation
46 * @param client client
47 * @param request request data
48 * @param messageId message id (udp server only)
49 * @param retries retries (udp server only)
50 */
51 virtual void handleRequest(CLIENT* client, REQUEST& request, const uint32_t messageId, const uint8_t retries) = 0;
52private:
53 string command;
54};
55
56};
57};
58};
ServerClientRequestHandler(const std::string &command)
Public constructor.
virtual void handleRequest(CLIENT *client, REQUEST &request, const uint32_t messageId, const uint8_t retries)=0
Request handler implementation.
const string & getCommand()
Returns this requests handler command name.
std::exception Exception
Exception base class.
Definition: Exception.h:19
Definition: fwd-tdme.h:4