mirror of
https://github.com/xfgryujk/blivechat.git
synced 2025-04-03 16:10:35 +08:00
修复前端页面不活动时心跳超时的问题
This commit is contained in:
parent
b98a8f6680
commit
f748d35fe4
@ -148,7 +148,7 @@ class ChatHandler(tornado.websocket.WebSocketHandler): # noqa
|
|||||||
)
|
)
|
||||||
|
|
||||||
def _on_receive_timeout(self):
|
def _on_receive_timeout(self):
|
||||||
logger.warning('client=%s timed out', self.request.remote_ip)
|
logger.info('client=%s timed out', self.request.remote_ip)
|
||||||
self._receive_timeout_timer_handle = None
|
self._receive_timeout_timer_handle = None
|
||||||
self.close()
|
self.close()
|
||||||
|
|
||||||
|
@ -10,8 +10,7 @@ const COMMAND_UPDATE_TRANSLATION = 7
|
|||||||
// const CONTENT_TYPE_TEXT = 0
|
// const CONTENT_TYPE_TEXT = 0
|
||||||
const CONTENT_TYPE_EMOTICON = 1
|
const CONTENT_TYPE_EMOTICON = 1
|
||||||
|
|
||||||
const HEARTBEAT_INTERVAL = 10 * 1000
|
const RECEIVE_TIMEOUT = 15 * 1000
|
||||||
const RECEIVE_TIMEOUT = HEARTBEAT_INTERVAL + (5 * 1000)
|
|
||||||
|
|
||||||
export default class ChatClientRelay {
|
export default class ChatClientRelay {
|
||||||
constructor(roomId, autoTranslate) {
|
constructor(roomId, autoTranslate) {
|
||||||
@ -28,7 +27,6 @@ export default class ChatClientRelay {
|
|||||||
this.websocket = null
|
this.websocket = null
|
||||||
this.retryCount = 0
|
this.retryCount = 0
|
||||||
this.isDestroying = false
|
this.isDestroying = false
|
||||||
this.heartbeatTimerId = null
|
|
||||||
this.receiveTimeoutTimerId = null
|
this.receiveTimeoutTimerId = null
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -66,16 +64,9 @@ export default class ChatClientRelay {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}))
|
}))
|
||||||
this.heartbeatTimerId = window.setInterval(this.sendHeartbeat.bind(this), HEARTBEAT_INTERVAL)
|
|
||||||
this.refreshReceiveTimeoutTimer()
|
this.refreshReceiveTimeoutTimer()
|
||||||
}
|
}
|
||||||
|
|
||||||
sendHeartbeat() {
|
|
||||||
this.websocket.send(JSON.stringify({
|
|
||||||
cmd: COMMAND_HEARTBEAT
|
|
||||||
}))
|
|
||||||
}
|
|
||||||
|
|
||||||
refreshReceiveTimeoutTimer() {
|
refreshReceiveTimeoutTimer() {
|
||||||
if (this.receiveTimeoutTimerId) {
|
if (this.receiveTimeoutTimerId) {
|
||||||
window.clearTimeout(this.receiveTimeoutTimerId)
|
window.clearTimeout(this.receiveTimeoutTimerId)
|
||||||
@ -95,10 +86,6 @@ export default class ChatClientRelay {
|
|||||||
|
|
||||||
onWsClose() {
|
onWsClose() {
|
||||||
this.websocket = null
|
this.websocket = null
|
||||||
if (this.heartbeatTimerId) {
|
|
||||||
window.clearInterval(this.heartbeatTimerId)
|
|
||||||
this.heartbeatTimerId = null
|
|
||||||
}
|
|
||||||
if (this.receiveTimeoutTimerId) {
|
if (this.receiveTimeoutTimerId) {
|
||||||
window.clearTimeout(this.receiveTimeoutTimerId)
|
window.clearTimeout(this.receiveTimeoutTimerId)
|
||||||
this.receiveTimeoutTimerId = null
|
this.receiveTimeoutTimerId = null
|
||||||
@ -117,6 +104,10 @@ export default class ChatClientRelay {
|
|||||||
let { cmd, data } = JSON.parse(event.data)
|
let { cmd, data } = JSON.parse(event.data)
|
||||||
switch (cmd) {
|
switch (cmd) {
|
||||||
case COMMAND_HEARTBEAT: {
|
case COMMAND_HEARTBEAT: {
|
||||||
|
// 不能由定时器触发发心跳包,因为浏览器会把不活动页面的定时器调到1分钟以上
|
||||||
|
this.websocket.send(JSON.stringify({
|
||||||
|
cmd: COMMAND_HEARTBEAT
|
||||||
|
}))
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
case COMMAND_ADD_TEXT: {
|
case COMMAND_ADD_TEXT: {
|
||||||
|
Loading…
Reference in New Issue
Block a user