1 Star 0 Fork 0

huobowen/vulcans

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
connection.go 1000 Bytes
一键复制 编辑 原始数据 按行查看 历史
huobowen 提交于 2025-03-25 09:41 +08:00 . 初始化程序
package connection
import (
"encoding/hex"
mqtt "github.com/eclipse/paho.mqtt.golang"
"github.com/go-kratos/kratos/v2/log"
"github.com/go-netty/go-netty"
"time"
)
// DeviceChannel 设备与服务端连接通道
type DeviceChannel struct {
DeviceCode string // 设备码
Channel interface{} // 连接通道
LastCommTime time.Time // 最后通信时间
}
func (c *DeviceChannel) WriteToMqtt(topic string, content interface{}) {
client, ok := c.Channel.(mqtt.Client)
if ok {
if token := client.Publish(topic, 1, false, content); token.Wait() && token.Error() != nil {
log.Errorf("[%s] send to device data error, topic: [%s], content: [%s], error: [%s]", c.DeviceCode, topic, content, token.Error())
}
}
}
func (c *DeviceChannel) WriteToSocket(content []byte) {
channel, ok := c.Channel.(netty.Channel)
if ok {
if ok = channel.Write(content); !ok {
log.Errorf("[%s] send to device data error, content: [%s]", c.DeviceCode, hex.EncodeToString(content))
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/huobowen/vulcans.git
git@gitee.com:huobowen/vulcans.git
huobowen
vulcans
vulcans
33e1650dda83

搜索帮助