fix(presence): 在线判定窗口从 3 分钟调整为 5 分钟(行业标准)
心跳间隔 60s 不变,窗口从 180s → 300s(5x 容差), 对网络抖动、Android ROM 限制、WiFi/4G 切换更友好。 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
c9217a85a9
commit
92c71b5e97
|
|
@ -1,5 +1,5 @@
|
|||
export class TimeWindow {
|
||||
static readonly DEFAULT_ONLINE_WINDOW_SECONDS = 180; // 3分钟
|
||||
static readonly DEFAULT_ONLINE_WINDOW_SECONDS = 300; // 5分钟(行业标准)
|
||||
static readonly DEFAULT_HEARTBEAT_INTERVAL_SECONDS = 60; // 60秒
|
||||
|
||||
private readonly _windowSeconds: number;
|
||||
|
|
|
|||
Loading…
Reference in New Issue