33 lines
779 B
Go
Raw Normal View History

2020-02-08 22:35:47 +01:00
package service
import (
"fmt"
mqtt "github.com/eclipse/paho.mqtt.golang"
2021-10-12 23:52:13 +02:00
"go.uber.org/zap"
2020-02-08 22:35:47 +01:00
)
func StopService(name string, client mqtt.Client, topics ...string) {
2021-10-12 23:52:13 +02:00
zap.S().Infof("Stop %s service", name)
2020-02-08 22:35:47 +01:00
token := client.Unsubscribe(topics...)
token.Wait()
if token.Error() != nil {
2021-10-12 23:52:13 +02:00
zap.S().Errorf("unable to unsubscribe service: %v", token.Error())
2020-02-08 22:35:47 +01:00
}
client.Disconnect(50)
}
func RegisterCallback(client mqtt.Client, topic string, callback mqtt.MessageHandler) error {
2021-10-12 23:52:13 +02:00
zap.S().Infof("Register callback on topic %v", topic)
2020-02-08 22:35:47 +01:00
token := client.Subscribe(topic, 0, callback)
token.Wait()
if token.Error() != nil {
return fmt.Errorf("unable to register callback on topic %s: %v", topic, token.Error())
}
return nil
}
type Part interface {
Start() error
Stop()
}