1 Star 0 Fork 22

yuetianlun/MQTT

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
instance.go 475 Bytes
一键复制 编辑 原始数据 按行查看 历史
shallot 提交于 2020-06-11 21:17 . 更新MQTT连接为实例管理。
package mqtt
import (
gomqtt "github.com/eclipse/paho.mqtt.golang"
)
// MQTT连接
type Client struct {
client gomqtt.Client // 实际连接
subscribers []SubscribeType // 订阅监听器
}
// 初始化监听器
func (m *Client) Init(opts *gomqtt.ClientOptions) (err error) {
opts.SetOnConnectHandler(m.onConnectHandler(opts.OnConnect))
opts.SetConnectionLostHandler(m.onConnectionLostHandler(opts.OnConnectionLost))
m.client, err = GetClient(opts)
return
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/yuetianlun/mqtt.git
git@gitee.com:yuetianlun/mqtt.git
yuetianlun
mqtt
MQTT
master

搜索帮助