admin
2018-12-19 b91b38942de4a865f105c4ca1e7d5ffce1b60b66
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.qcloud.cmq;
 
import java.util.Vector;
 
/**
 *  Message class .
 *
 * @author York.
 *         Created 2016年9月26日.
 */
public class Message {
    
    /** 服务器返回的消息ID */
    public String msgId;
    /** 每次消费唯一的消息句柄,用于删除等操作 */
    public String receiptHandle;
    /** 消息体 */
    public String msgBody;
    /** 消息发送到队列的时间,从 1970年1月1日 00:00:00 000 开始的毫秒数 */
    public long enqueueTime;
    /** 消息下次可见的时间,从 1970年1月1日 00:00:00 000 开始的毫秒数 */
    public long nextVisibleTime;
    /** 消息第一次出队列的时间,从 1970年1月1日 00:00:00 000 开始的毫秒数 */
    public long firstDequeueTime;
    /** 出队列次数 */
    public    int dequeueCount;
    public  Vector<String> msgTag;
}