2025-08-29 16:49:16 +08:00
|
|
|
package com.fuyuanshen.global.queue;
|
|
|
|
|
|
2025-09-09 10:29:51 +08:00
|
|
|
import com.fuyuanshen.common.core.constant.GlobalConstants;
|
|
|
|
|
|
2025-08-29 16:49:16 +08:00
|
|
|
public class MqttMessageQueueConstants {
|
2025-09-09 10:29:51 +08:00
|
|
|
public static final String MQTT_MESSAGE_QUEUE_KEY = GlobalConstants.GLOBAL_REDIS_KEY + "mqtt:message:queue";
|
|
|
|
|
public static final String MQTT_MESSAGE_DEDUP_KEY = GlobalConstants.GLOBAL_REDIS_KEY + "mqtt:message:dedup";
|
2025-08-29 16:49:16 +08:00
|
|
|
}
|