TCP/UDP客户端
net
组件:把msg发送到指定协议网络服务器(不支持读取数据),支持协议:tcp、udp、ip4:1、ip6:ipv6-icmp、ip6:58、unix、unixgram,以及net包支持的协议类型。
提示
每条消息发送前会在内容最后增加结束符:'\n'
# 配置
字段 | 类型 | 是否必填 | 说明 | 默认值 |
---|---|---|---|---|
Protocol | string | 是 | 协议tcp/udp,以及net包支持的协议类型 | tcp |
Server | string | 是 | 服务器的地址,格式为host:port 如(:8888) | 0 |
ConnectTimeout | int | 否 | 连接超时,单位为秒,如果<=0 则默认60 | 60 |
HeartbeatInterval | int | 否 | 心跳间隔,用于定期发送心跳消息,单位为秒,如果<=0 则默认60 | 60 |
# Relation Type
- Success: 发送失败,把消息发送到
Success
链 - Failure: 发送失败,把消息发送到
Failure
链
# 执行结果
# 配置示例
{
"id": "s1",
"type": "net",
"name": "推送数据",
"configuration": {
"protocol": "tcp",
"server": "127.0.0.1:8888"
}
}
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
# 应用示例
在 GitHub 上编辑此页 (opens new window)
上次更新: 2024/10/23, 10:13:01