我正在使用 Apprtc.Follow 下面提到的库开发视频通话应用程序。
当我将 url 更改为我的自定义服务器而不是 apprtc 服务器时,视频通话会在 1 分钟后断开连接。我失去了与服务器的连接。
为了避免与服务器的连接丢失,我们需要每隔大约 30 秒定期 ping 服务器。
但上面提到的 AppRTC 项目正在使用 jar 文件(autobanh.jar)来连接 websocket,但在库中 sendPing mentod 是私有的,因此无法访问。
问题 1 -没有办法 ping websocket 服务器。
尝试替换 websocet 库后, 我用下面提到的库更改了 websocket 库
- https://github.com/Koredotcom/android-kore-sdk/tree/master/BotsSDK/korebotsdklib/src/main/java/kore/botssdk/autobahn
- https://github.com/martindale/soundtrack.io-android/tree/master/src/de/tavendo/autobahn
更换 websocket 库后,现在我可以访问 sendPing 方法了。但是在视频通话期间,我仍然在 60 秒后失去了连接。
Ping方法-
public void sendPingMessageToServer() {
try {
WebSocketMessage.Ping ping = new WebSocketMessage.Ping();
// ping.mPayload="ping to server".getBytes();
mWebSocketWriter.sendPing(ping);
} catch (Exception e) {
e.printStackTrace();
}
}
在取消注释 ping.mPayload 行时,我得到 BufferOverflowException。
30秒定时器
private void startConnectionCheckTimer() {
timerInstance.scheduleAtFixedRate(new TimerTask() {
@Override
public void run() {
try {
ws.sendPingMessageToServer();
} catch (Exception e) {
e.printStackTrace();
}
}
}, 0, 30 * 1000);
}
请建议如何避免 60 秒后通话断开。