增加消息处理异常记录--system模块

This commit is contained in:
2023-08-18 15:15:51 +08:00
parent 04f7117f26
commit 3ede2a285a
3 changed files with 37 additions and 15 deletions

View File

@@ -0,0 +1,18 @@
package com.njcn.mq.constant;
/**
* @author hongawen
* @version 1.0.0
* @date 2023年08月18日 11:31
*/
public interface MessageStatus {
/***
* 状态为 成功、处理中时,打回不处理
* 状态为 失败,可以继续处理
*/
String SUCCESS = "success";
String BEING_PROCESSED = "being processed";
String FAIL = "fail";
}