Wukongim Endpoint
wukongim Endpoint v0.28.0+ 提供了基于Wukongim的频道消息订阅功能,订阅消息信传递下个节点处理。
提示
1.该组件是扩展组件,需要引入额外的扩展库:rulego-components (opens new window)
# Type
endpoint/wukongim
# 配置参数
字段 | 类型 | 说明 | 默认值 |
---|---|---|---|
Server | string | Wukongim服务器地址列表 | tcp://175.27.245.108:15100 |
UID | string | 用户UID | test1 |
Token | string | 登录密码 | test1 |
ConnectTimeout | int64 | 连接超时(单位:秒) | 5 |
ProtoVersion | int | Proto版本 | wkproto.LatestVersion |
PingInterval | int64 | 心跳间隔(单位:秒) | 30 |
Reconnect | bool | 是否自动重连 | true |
AutoAck | bool | 是否自动确认 | true |
# 配置示例
{
"ruleChain": {
"id": "wGhAZMxoSECp",
"name": "悟空IM消息订阅",
"debugMode": false,
"root": true,
"disabled": true,
"additionalInfo": {
"createTime": "2025/01/13 10:04:40",
"description": "",
"layoutX": "280",
"layoutY": "280",
"updateTime": "2025/01/13 10:11:24",
"username": "admin"
}
},
"metadata": {
"endpoints": [
{
"id": "node_2",
"additionalInfo": {
"layoutX": 570,
"layoutY": 440
},
"type": "endpoint/wukongim",
"name": "订阅",
"debugMode": false,
"configuration": {
"autoAck": true,
"connectTimeout": 5,
"pingInterval": 30,
"protoVersion": 3,
"reconnect": true,
"server": "tcp://175.27.245.108:15100",
"token": "test1",
"uID": "group1"
},
"processors": null,
"routers": [
{
"id": "peywKET4J7YD",
"params": [],
"from": {
"path": "*",
"configuration": null,
"processors": []
},
"to": {
"path": "wGhAZMxoSECp:node_4",
"configuration": null,
"wait": false,
"processors": []
}
}
]
}
],
"nodes": [
{
"id": "node_4",
"additionalInfo": {
"layoutX": 790,
"layoutY": 350
},
"type": "log",
"name": "log",
"debugMode": true,
"configuration": {
"jsScript": "return 'Incoming message:\n' + JSON.stringify(msg) + '\nIncoming metadata:\n' + JSON.stringify(metadata);"
}
}
],
"connections": []
}
}
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
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
# 输出参数
从Wukongim服务器接收到的消息会被转换为 RuleMsg
格式并发送到规则链:
- data:消息内容
- dataType:JSON
- type:默认为空
在 GitHub 上编辑此页 (opens new window)
上次更新: 2025/01/20, 03:56:21