NIMSDK-AOS  9.19.0
QChatMessageStatus.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.constants;
2 
3 public class QChatMessageStatus {
4  /**
5  * 消息状态发送失败
6  */
7  public static final int STATUS_SEND_FAILED = -1;
8  /**
9  * 消息状态正常
10  */
11  public static final int STATUS_NORMAL = 0;
12  /**
13  * 消息状态撤回
14  */
15  public static final int STATUS_REVOKE = 1;
16  /**
17  * 消息状态删除
18  */
19  public static final int STATUS_DELETE = 2;
20 
21  /**
22  * 消息状态大于等于10000表示自定义状态
23  */
24  public static final int STATUS_CUSTOM = 10000;
25 }
static final int STATUS_SEND_FAILED
消息状态发送失败
static final int STATUS_CUSTOM
消息状态大于等于10000表示自定义状态