NatsWx.go 406 B

1234567891011121314
  1. package NatsServer
  2. import (
  3. "time"
  4. )
  5. func (m *NatsImpl) Wx_GenerateQRCode(T_uuid string) (string, bool) {
  6. // 请求-响应, 向 test3 发布一个 `help me` 请求数据,设置超时间3秒,如果有多个响应,只接收第一个收到的消息
  7. msg, err := m.nats.Request("Wx_GenerateQR", []byte(T_uuid), 3*time.Second)
  8. if err != nil {
  9. return "", false
  10. }
  11. return string(msg.Data), true
  12. }