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