Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
300 views
in Technique[技术] by (71.8m points)

go - pass addtional parameter to callback

I am using the phao mqtt module to communicate with a mqtt server.

Now I want to subscribe to a topic, for this I need to pass a callback with type MessageHandler. Is it somehow possible to pass an additional parameter to the MessageHandler?

My handler looks like this so far:

var MyMessageHandler mqtt.MessageHandler = func(client mqtt.Client, msg mqtt.Message) {
    fmt.Printf("Received message: %s from topic: %s
", msg.Payload(), msg.Topic())
    # Call here a stuct method
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You have 2 options:

  • define a function that returns mqtt.MessageHandler and accepts your struct
  • define a method on your struct and the same signature of mqtt.MessageHandler
type S struct{}

func MessageHandler(s S) mqtt.MessageHandler {
  return func(client mqtt.Client, msg mqtt.Message) {
    // use `s`
    // ...
  }
}

func (s *S) MessageHandler(client mqtt.Client, msg mqtt.Message) {
  // use `s`
  // ...
}

Usage:

func main() {
  s := S{}
  mh := MessageHandler(s)

  mh = s.MessageHandler // same type
  // use mh
  // ...
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...