13 Star 81 Fork 22

北京小程科技有限公司 / MQTT

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
client_options.go 391 Bytes
一键复制 编辑 原始数据 按行查看 历史
package mqtt
import (
"time"
gomqtt "github.com/eclipse/paho.mqtt.golang"
)
// 获取MQTT连接配置项
func GetClientOptions(conf *Config) *gomqtt.ClientOptions {
opts := gomqtt.NewClientOptions()
opts.SetAutoReconnect(true)
opts.SetMaxReconnectInterval(1 * time.Second)
opts.AddBroker(conf.Broker)
if len(conf.ClientID) > 0 {
opts.SetClientID(conf.ClientID)
}
return opts
}
Go
1
https://gitee.com/xiaochengtech/mqtt.git
git@gitee.com:xiaochengtech/mqtt.git
xiaochengtech
mqtt
MQTT
master

搜索帮助