加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
instance.go 548 Bytes
一键复制 编辑 原始数据 按行查看 历史
shallot 提交于 2021-06-16 08:10 . 添加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
}
// 关闭监视器
func (m *Client) Close() {
m.client.Disconnect(0)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化