|
|
@@ -32,7 +32,7 @@ func OneCirclesActivityCoinAutoExchangeGreenEnergyConsume(queue md.MqQueue) { |
|
|
|
//1、将自己绑定到交换机上 |
|
|
|
ch.Bind(queue.Name, queue.ExchangeName, queue.RoutKey) |
|
|
|
//2、取出数据进行消费 |
|
|
|
ch.Qos(50) |
|
|
|
ch.Qos(20) |
|
|
|
delivery := ch.Consume(queue.Name, false) |
|
|
|
|
|
|
|
one_circles.Init(cfg.RedisAddr) |
|
|
@@ -61,7 +61,7 @@ func OneCirclesActivityCoinAutoExchangeGreenEnergyConsume(queue md.MqQueue) { |
|
|
|
} |
|
|
|
|
|
|
|
func handleOneCirclesActivityCoinAutoExchangeGreenEnergyConsume(msgData []byte) error { |
|
|
|
time.Sleep(time.Duration(1) * time.Millisecond) //休眠1毫秒 |
|
|
|
time.Sleep(time.Duration(100) * time.Microsecond) //休眠0.1毫秒 |
|
|
|
//1、解析mq中queue的数据结构体 |
|
|
|
var msg *md2.OneCirclesStructForAutoExchangeGreenEnergy |
|
|
|
err := json.Unmarshal(msgData, &msg) |
|
|
|