TDME2
1.9.121
src
tdme
network
udpserver
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
>
10
#include <
tdme/utilities/Exception.h
>
11
#include <
tdme/utilities/Reference.h
>
12
13
using
std::string;
14
15
using
tdme::utilities::Exception
;
16
using
tdme::utilities::Reference
;
17
18
namespace
tdme
{
19
namespace
network {
20
namespace
udpserver {
21
22
/**
23
* Base class for network server group
24
* @author Andreas Drewke
25
*/
26
class
ServerGroupBase
:
public
Reference
{
27
friend
class
ServerWorkerThread
;
28
29
protected
:
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
};
Exception.h
Reference.h
tdme::network::udpserver::ServerGroupBase
Base class for network server group.
Definition:
ServerGroupBase.h:26
tdme::network::udpserver::ServerGroupBase::onCustomEvent
virtual void onCustomEvent(const string &type)=0
tdme::network::udpserver::ServerGroupBase::onClose
virtual void onClose()=0
tdme::network::udpserver::ServerGroupBase::onInit
virtual void onInit()=0
tdme::network::udpserver::ServerWorkerThread
Server worker thread.
Definition:
ServerWorkerThread.h:21
tdme::utilities::Reference
Reference counter implementation to be used with inheritance.
Definition:
Reference.h:10
tdme::utilities::Exception
std::exception Exception
Exception base class.
Definition:
Exception.h:19
tdme
Definition:
fwd-tdme.h:4
tdme.h
Generated by
1.9.3