-
Notifications
You must be signed in to change notification settings - Fork 39
/
app.ts
58 lines (52 loc) · 1.58 KB
/
app.ts
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
/**
* Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
*
* Use of this source code is governed by an MIT-style license.
*
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
*
*/
// import MqClass from "./app/lib/MqClass";
import addValidate from './app/validate/common';
export default class AppBootHook {
private app;
// private queueTypes = ['block', 'material', 'app', 'platform'];
constructor(app) {
this.app = app;
this.app.logger.info('start to init app');
}
// 配置文件即将加载,这是最后动态修改配置的时机
async configWillLoad() {
this.app.logger.info('configWillLoad');
}
// 配置文件加载完成
async beforeStart() {
this.app.logger.info('beforeStart');
}
// 文件加载完成
async didLoad() {
this.app.logger.info('didLoad');
}
// 插件启动完毕
async willReady() {
this.app.logger.info('willReady');
addValidate(this.app)
}
// worker 准备就绪
async didReady() {
// const mqClient = MqClass.getInstance(this.app);
// await mqClient.initPublisher(this.queueTypes);
this.app.logger.info('didReady');
}
// 应用启动完成
async serverDidReady() {
this.app.logger.info('serverDidReady');
}
// 应用即将关闭
async beforeClose() {
this.app.logger.info('beforeClose');
}
}