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