增加消息处理异常记录--system模块
This commit is contained in:
@@ -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";
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user