-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGlobalServer.h
More file actions
77 lines (63 loc) · 1.2 KB
/
GlobalServer.h
File metadata and controls
77 lines (63 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#ifndef _GlobalServer_H_
#define _GlobalServer_H_
#include <iostream>
#include "servant/Application.h"
#include "OuterFactoryImp.h"
//
using namespace tars;
/**
*
**/
class GlobalServer : public Application
{
public:
/**
*
*/
GlobalServer() {}
/**
*
**/
virtual ~GlobalServer() {};
/**
*
**/
virtual void initialize();
/**
*
**/
virtual void destroyApp();
public:
/*
* 配置变更,重新加载配置
*/
bool reloadSvrConfig(const string &command, const string ¶ms, string &result);
/**
* 加载DB配置数据
*/
bool reloadDBConfig(const string &command, const string ¶ms, string &result);
public:
/**
* 初始化外部接口对象
**/
int initOuterFactory();
/**
* 取外部接口对象
**/
OuterFactoryImpPtr getOuterFactoryPtr()
{
return _pOuter;
}
public:
/**
* 加载DB数据
*/
void loadDBConfig();
private:
//外部接口对象
OuterFactoryImpPtr _pOuter;
};
////
extern GlobalServer g_app;
////////////////////////////////////////////
#endif