rabbitmq rpc 消息格式及调用封装
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.

21 lines
562 B

  1. package rabbitmqrpc
  2. //v2
  3. //订单路由
  4. const ORDER_EXCHANGE_V2 string = "ex_order_v2"
  5. //已创建订单route key
  6. const ORDER_CREATED_KEY_V2 string = "created_v2"
  7. //订单已创建队列,订单服务用
  8. const ORDER_CREATED_QUEUE_V2 = "order_created_queue_v2"
  9. //已支付订单route key
  10. const ORDER_PAYED_KEY_V2 string = "payed_v2"
  11. //订单已支付队列,订单服务用
  12. const ORDER_PAYED_QUEUE_V2 = "order_payed_queue_v2"
  13. //怡亚通订单已支付队列,怡亚通订单服务用
  14. const ORDER_PAYED_QUEUE_V2_380STAR = "order_payed_queue_v2_380star"