You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
736 B
19 lines
736 B
|
3 years ago
|
package com.bx.imcommon.contant;
|
||
|
3 years ago
|
|
||
|
3 years ago
|
public class IMRedisKey {
|
||
|
3 years ago
|
|
||
|
3 years ago
|
// im-server最大id,从0开始递增
|
||
|
|
public final static String IM_MAX_SERVER_ID = "im:max_server_id";
|
||
|
|
// 用户ID所连接的IM-server的ID
|
||
|
3 years ago
|
public final static String IM_USER_SERVER_ID = "im:user:server_id";
|
||
|
3 years ago
|
// 未读私聊消息队列
|
||
|
3 years ago
|
public final static String IM_UNREAD_PRIVATE_QUEUE = "im:unread:private";
|
||
|
3 years ago
|
// 未读群聊消息队列
|
||
|
3 years ago
|
public final static String IM_UNREAD_GROUP_QUEUE = "im:unread:group";
|
||
|
3 years ago
|
// 私聊消息发送结果队列
|
||
|
|
public final static String IM_RESULT_PRIVATE_QUEUE = "im:result:private";
|
||
|
|
// 群聊消息发送结果队列
|
||
|
|
public final static String IM_RESULT_GROUP_QUEUE = "im:result:group";
|
||
|
|
|
||
|
3 years ago
|
}
|