| | |
| | | package cc.mrbird.febs.rabbit.enumerates; |
| | | |
| | | import cc.mrbird.febs.rabbit.constants.ExchangeConstants; |
| | | import cc.mrbird.febs.rabbit.constants.QueueConstants; |
| | | import cc.mrbird.febs.rabbit.constants.RouteKeyConstants; |
| | | import lombok.Getter; |
| | | |
| | | @Getter |
| | | public enum RabbitQueueEnum { |
| | | |
| | | DEFAULT("exchange_default", "route_key_default", "queue_default"), |
| | | /** |
| | | * 节点升级 |
| | | */ |
| | | RUN_VIP_NODE_UP(ExchangeConstants.RUN_VIP_NODE_UP, |
| | | RouteKeyConstants.RUN_VIP_NODE_UP, |
| | | QueueConstants.RUN_VIP_NODE_UP), |
| | | |
| | | ORDER_CANCEL_DELAY_TTL("exchange_order_delay_ttl", "route_key_order_delay_ttl", "queue_order_delay_ttl"), |
| | | ORDER_CANCEL_DELAY("exchange_order_delay", "route_key_order_delay", "queue_order_delay"), |
| | | /** |
| | | * 充值成功消息 |
| | | */ |
| | | RUN_VIP_OPERATION_CHARGE_BALANCE(ExchangeConstants.RUN_VIP_OPERATION_CHARGE_BALANCE, |
| | | RouteKeyConstants.RUN_VIP_OPERATION_CHARGE_BALANCE, |
| | | QueueConstants.RUN_VIP_OPERATION_CHARGE_BALANCE), |
| | | |
| | | AGENT_REUTRN_MONEY("exchange_agent_return_money", "route_key_agent_return_money", "queue_agent_return_money"); |
| | | /** |
| | | * 购买成功消息 |
| | | */ |
| | | RUN_VIP_OPERATION_CHARGE(ExchangeConstants.RUN_VIP_OPERATION_CHARGE, |
| | | RouteKeyConstants.RUN_VIP_OPERATION_CHARGE, |
| | | QueueConstants.RUN_VIP_OPERATION_CHARGE), |
| | | |
| | | /** |
| | | * 充值自动过期 |
| | | */ |
| | | RUN_VIP_OPERATION_CHARGE_FAIL(ExchangeConstants.RUN_VIP_OPERATION_CHARGE_FAIL, |
| | | RouteKeyConstants.RUN_VIP_OPERATION_CHARGE_FAIL, |
| | | QueueConstants.RUN_VIP_OPERATION_CHARGE_FAIL), |
| | | RUN_VIP_OPERATION_CHARGE_FAIL_TTL(ExchangeConstants.RUN_VIP_OPERATION_CHARGE_FAIL_TTL, |
| | | RouteKeyConstants.RUN_VIP_OPERATION_CHARGE_FAIL_TTL, |
| | | QueueConstants.RUN_VIP_OPERATION_CHARGE_FAIL_TTL),; |
| | | |
| | | private String exchange; |
| | | |