重新连接超时时的socket.io事件

时间:2013-07-09 13:01:17

标签: javascript websocket socket.io reconnect

我正在使用socket.io在我的应用程序中进行websocket通信。 连接丢失后,它会尝试重新连接6次,然后达到超时。 是否有任何事件在不再尝试重新连接时发出?

2 个答案:

答案 0 :(得分:1)

我发现这是一个已知问题。

参考:https://github.com/LearnBoost/socket.io/issues/652

悲伤...... :(

答案 1 :(得分:0)

从源代码看,事件似乎是“reconnect_failed”

if (this.attempts > this._reconnectionAttempts) {
this.emit('reconnect_failed');
this.reconnecting = false;
}