消息路由
msgTypeSwitch
组件:消息路由。根据传入的消息类型(msgType)路由到一个或多个输出链。
# 配置
无
# Relation Type
通过msgType
与下一个或多个节点连接,如果没有匹配的节点,则会使用Other
匹配节点。
# 执行结果
该组件不会改变msg
、metadata
和msgType
内容。
# 配置示例
{
"id": "s1",
"type": "msgTypeSwitch",
"name": "过滤"
}
1
2
3
4
5
2
3
4
5
# 应用示例
通过msgType
路由到不同的节点进行处理。
{
"ruleChain": {
"id":"rule01",
"name": "测试规则链-msgTypeSwitch",
"root": true
},
"metadata": {
"nodes": [
{
"id": "s1",
"type": "msgTypeSwitch",
"name": "过滤"
},
{
"id": "s2",
"type": "log",
"name": "记录日志1",
"configuration": {
"jsScript": "return 'handle msgType='+ msgType+':s2';"
}
},
{
"id": "s3",
"type": "log",
"name": "记录日志2",
"configuration": {
"jsScript": "return 'handle msgType='+ msgType+':s3';"
}
},
{
"id": "s4",
"type": "log",
"name": "记录日志3",
"configuration": {
"jsScript": "return 'handle msgType='+ msgType+':s4';"
}
}
],
"connections": [
{
"fromId": "s1",
"toId": "s2",
"type": "TEST_MSG_TYPE1"
},
{
"fromId": "s1",
"toId": "s3",
"type": "TEST_MSG_TYPE1"
},
{
"fromId": "s1",
"toId": "s4",
"type": "TEST_MSG_TYPE2"
}
]
}
}
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
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
在 GitHub 上编辑此页 (opens new window)
上次更新: 2024/10/23, 10:13:01