cgserver 10.0.3 → 10.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/Framework/global.js +23 -23
- package/dist/types/Framework/global.d.ts +23 -23
- package/package.json +1 -1
|
@@ -30,29 +30,29 @@ const Core_1 = require("./Core/Core");
|
|
|
30
30
|
* cg引擎的,全局对象
|
|
31
31
|
*/
|
|
32
32
|
class global {
|
|
33
|
-
static
|
|
34
|
-
static
|
|
35
|
-
static
|
|
36
|
-
static
|
|
37
|
-
static
|
|
38
|
-
static
|
|
39
|
-
static
|
|
40
|
-
static
|
|
41
|
-
static
|
|
42
|
-
static
|
|
43
|
-
static
|
|
44
|
-
static
|
|
45
|
-
static
|
|
46
|
-
static
|
|
47
|
-
static
|
|
48
|
-
static
|
|
49
|
-
static
|
|
50
|
-
static
|
|
51
|
-
static
|
|
52
|
-
static
|
|
53
|
-
static
|
|
54
|
-
static
|
|
55
|
-
static
|
|
33
|
+
static gMongoServiceMgr = MongoServiceManager_1.gMongoServiceMgr;
|
|
34
|
+
static gCgServer = cgserver_1.gCgServer;
|
|
35
|
+
static gDbCache = DBCache_1.gDbCache;
|
|
36
|
+
static gTriggerMgr = TriggerMgr_1.gTriggerMgr;
|
|
37
|
+
static gMongoMgr = MongoManager_1.gMongoMgr;
|
|
38
|
+
static gMSSqlMgr = MSSqlManager_1.gMSSqlMgr;
|
|
39
|
+
static gMysqlMgr = MysqlManager_1.gMysqlMgr;
|
|
40
|
+
static gRedisMgr = RedisManager_1.gRedisMgr;
|
|
41
|
+
static gCacheTool = CacheTool_1.gCacheTool;
|
|
42
|
+
static gHttpTool = HttpTool_1.gHttpTool;
|
|
43
|
+
static gLog = Log_1.gLog;
|
|
44
|
+
static gSyncQueueTool = SyncQueueTool_1.gSyncQueueTool;
|
|
45
|
+
static gEventTool = EventTool_1.gEventTool;
|
|
46
|
+
static gByteTool = ByteTool_1.gByteTool;
|
|
47
|
+
static gSmsTool = Alisms_1.gSMSTool;
|
|
48
|
+
static gEmailTool = EmailTool_1.gEmailTool;
|
|
49
|
+
static gQiniuTool = QiniuTool_1.gQiniuTool;
|
|
50
|
+
static gQQTool = QQTool_1.gQQTool;
|
|
51
|
+
static gWechatTool = WechatTool_1.gWechatTool;
|
|
52
|
+
static gWechatOATool = WechatTool_1.gWechatTool;
|
|
53
|
+
static gAlipayTool = AlipayTool_1.gAlipayTool;
|
|
54
|
+
static gAppleTool = AppleTool_1.gAppleTool;
|
|
55
|
+
static gProtoFactory = ProtoFactory_1.gProtoFactory;
|
|
56
56
|
/**
|
|
57
57
|
* web服务中mvc的控制器管理器
|
|
58
58
|
*/
|
|
@@ -3,29 +3,29 @@ import { core } from "./Core/Core";
|
|
|
3
3
|
* cg引擎的,全局对象
|
|
4
4
|
*/
|
|
5
5
|
export declare class global {
|
|
6
|
-
static
|
|
7
|
-
static
|
|
8
|
-
static
|
|
9
|
-
static
|
|
10
|
-
static
|
|
11
|
-
static
|
|
12
|
-
static
|
|
13
|
-
static
|
|
14
|
-
static
|
|
15
|
-
static
|
|
16
|
-
static
|
|
17
|
-
static
|
|
18
|
-
static
|
|
19
|
-
static
|
|
20
|
-
static
|
|
21
|
-
static
|
|
22
|
-
static
|
|
23
|
-
static
|
|
24
|
-
static
|
|
25
|
-
static
|
|
26
|
-
static
|
|
27
|
-
static
|
|
28
|
-
static
|
|
6
|
+
static gMongoServiceMgr: import("./Database/Mongo/MongoServiceManager").MongoServiceManager;
|
|
7
|
+
static gCgServer: import("./cgserver").CgServer;
|
|
8
|
+
static gDbCache: import("./Database/Decorator/DBCache").DBCache;
|
|
9
|
+
static gTriggerMgr: import("./AI/TriggerMgr").TriggerManager;
|
|
10
|
+
static gMongoMgr: import("./Database/Mongo/MongoManager").MongoManager;
|
|
11
|
+
static gMSSqlMgr: import("./Database/MSSqlManager").MSSqlManager;
|
|
12
|
+
static gMysqlMgr: import("./Database/MysqlManager").MysqlManager;
|
|
13
|
+
static gRedisMgr: import("./Database/RedisManager").RedisManager;
|
|
14
|
+
static gCacheTool: import("./Logic/CacheTool").CacheTool;
|
|
15
|
+
static gHttpTool: import("./Logic/HttpTool").HttpTool;
|
|
16
|
+
static gLog: import("./Logic/Log").Log;
|
|
17
|
+
static gSyncQueueTool: import("./Logic/SyncQueueTool").SyncQueueTool;
|
|
18
|
+
static gEventTool: import("./Logic/EventTool").EventTool;
|
|
19
|
+
static gByteTool: import("./Core/ByteTool").ByteTool;
|
|
20
|
+
static gSmsTool: import("./ThirdParty/Alisms").SMSTool;
|
|
21
|
+
static gEmailTool: import("./ThirdParty/EmailTool").EmailTool;
|
|
22
|
+
static gQiniuTool: import("./ThirdParty/QiniuTool").QiniuTool;
|
|
23
|
+
static gQQTool: import("./ThirdParty/QQTool").QQTool;
|
|
24
|
+
static gWechatTool: import("./ThirdParty/WechatTool").WechatTool;
|
|
25
|
+
static gWechatOATool: import("./ThirdParty/WechatTool").WechatTool;
|
|
26
|
+
static gAlipayTool: import("./ThirdParty/AlipayTool").AlipayTool;
|
|
27
|
+
static gAppleTool: import("./ThirdParty/AppleTool").AppleTool;
|
|
28
|
+
static gProtoFactory: import("./SocketServer/ProtoFilter/ProtoFactory").ProtoFactory;
|
|
29
29
|
/**
|
|
30
30
|
* web服务中mvc的控制器管理器
|
|
31
31
|
*/
|