TDME2 1.9.121
ServerGroupBase.h
Go to the documentation of this file.
1#pragma once
2
3#include <stdint.h>
4
5#include <exception>
6#include <sstream>
7#include <string>
8
9#include <tdme/tdme.h>
12
13using std::string;
14
17
18namespace tdme {
19namespace network {
20namespace udpserver {
21
22/**
23 * Base class for network server group
24 * @author Andreas Drewke
25 */
26class ServerGroupBase : public Reference {
27friend class ServerWorkerThread;
28
29protected:
30 /*
31 * @brief event method called if group will be initiated, will be called from worker
32 */
33 virtual void onInit() = 0;
34
35 /*
36 * @brief event method called if client will be closed, will be called from worker
37 */
38 virtual void onClose() = 0;
39
40 /*
41 * @brief custom event method called if fired, will be called from worker
42 */
43 virtual void onCustomEvent(const string& type) = 0;
44};
45
46};
47};
48};
Base class for network server group.
virtual void onCustomEvent(const string &type)=0
Reference counter implementation to be used with inheritance.
Definition: Reference.h:10
std::exception Exception
Exception base class.
Definition: Exception.h:19
Definition: fwd-tdme.h:4