forked from ChunelFeng/CGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGDaemon.cpp
More file actions
40 lines (30 loc) · 655 Bytes
/
GDaemon.cpp
File metadata and controls
40 lines (30 loc) · 655 Bytes
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
/***************************
@Author: Chunel
@Contact: chunel@foxmail.com
@File: GDaemon.cpp
@Time: 2022/2/3 1:19 下午
@Desc:
***************************/
#include "GDaemon.h"
CGRAPH_NAMESPACE_BEGIN
CStatus GDaemon::init() {
CGRAPH_FUNCTION_BEGIN
timer_.start(interval_, [this] {
daemonTask(param_);
}, [this] {
return modify(param_);
});
CGRAPH_FUNCTION_END
}
CStatus GDaemon::destroy() {
CGRAPH_FUNCTION_BEGIN
timer_.stop();
CGRAPH_FUNCTION_END
}
CMSec GDaemon::getInterval() const {
return interval_;
}
CMSec GDaemon::modify(GDaemonParamPtr param) {
return 0;
}
CGRAPH_NAMESPACE_END