18 lines
480 B
Java
18 lines
480 B
Java
package com.greenorange.promotion.constant;
|
|
|
|
import java.util.List;
|
|
|
|
public interface MqConstant {
|
|
|
|
List<Long> DELAY_MILLIS = List.of(10000L, 10000L, 10000L, 15000L, 15000L, 30000L, 30000L, 60000L, 60000L, 120000L, 120000L, 120000L, 300000L);
|
|
|
|
// List<Long> DELAY_MILLIS = List.of(10000L, 10000L, 10000L, 15000L, 15000L);
|
|
|
|
String DELAY_EXCHANGE = "delay.topic";
|
|
|
|
String DELAY_ORDER_QUEUE = "order.delay.queue";
|
|
|
|
String DELAY_ORDER_ROUTING_KEY = "order.key";
|
|
|
|
}
|