golang 的 rabbitmq 消费项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

consume_key.go 1.2 KiB

4 months ago
10 months ago
4 months ago
8 months ago
7 months ago
4 months ago
7 months ago
4 months ago
4 months ago
6 months ago
4 months ago
12345678910111213141516171819202122232425262728293031323334353637
  1. package md
  2. type MqQueue struct {
  3. ExchangeName string `json:"exchangeName"` //交换机名字
  4. Name string `json:"name"` //队列名字
  5. Type string `json:"type"` //队列类型
  6. IsPersistent bool `json:"is_persistent"` //队列是否持久化
  7. RoutKey string `json:"rout_key"` //路由
  8. BindKey string `json:"bind_key"` //绑定的路由
  9. ConsumeFunName string `json:"consume_fun_name"` //消费方法
  10. }
  11. var RabbitMqQueueKeyList = []*MqQueue{
  12. {
  13. ExchangeName: "canal.topic",
  14. Name: "canal_guide_order_for_statistics",
  15. Type: TopicQueueType,
  16. IsPersistent: false,
  17. RoutKey: "canal_order_list",
  18. BindKey: "",
  19. ConsumeFunName: "CanalGuideOrderForStatistics",
  20. },
  21. {
  22. ExchangeName: "canal.topic",
  23. Name: "canal_fin_withdraw_apply_for_statistics",
  24. Type: TopicQueueType,
  25. IsPersistent: false,
  26. RoutKey: "canal_fin_withdraw_apply",
  27. BindKey: "",
  28. ConsumeFunName: "CanalFinWithdrawApplyForStatistics",
  29. },
  30. }
  31. const (
  32. CanalFinWithdrawApplyForStatistics = "CanalFinWithdrawApplyForStatistics"
  33. CanalGuideOrderForStatistics = "CanalGuideOrderForStatistics"
  34. )