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.
18 lines
325 B
18 lines
325 B
package com.bx.imcommon.contant;
|
|
|
|
public final class IMConstant {
|
|
|
|
private IMConstant() {
|
|
}
|
|
|
|
/**
|
|
* 在线状态过期时间 600s
|
|
*/
|
|
public static final long ONLINE_TIMEOUT_SECOND = 600;
|
|
/**
|
|
* 消息允许撤回时间 300s
|
|
*/
|
|
public static final long ALLOW_RECALL_SECOND = 300;
|
|
|
|
|
|
}
|
|
|