Firebase:onDisconnect 事件何时触发?
Firebase: when onDisconnect event fire?
我正在为我的 android 应用程序使用 Firebase 后端。我想为我的聊天构建一个用户状态系统。为此,我采用了 Firebase Guide
中的模式
final Firebase myConnectionsRef = new Firebase("https://<YOUR-FIREBASE-APP>.firebaseio.com/users/joe/connections");
// stores the timestamp of my last disconnect (the last time I was seen online)
final Firebase lastOnlineRef = new Firebase("https://<YOUR-FIREBASE-APP>.firebaseio.com/users/joe/lastOnline");
final Firebase connectedRef = new Firebase("https://<YOUR-FIREBASE-APP>.firebaseio.com/.info/connected");
connectedRef.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot snapshot) {
boolean connected = snapshot.getValue(Boolean.class);
if (connected) {
// add this device to my connections list
// this value could contain info about the device or a timestamp too
Firebase con = myConnectionsRef.push();
con.setValue(Boolean.TRUE);
// when this device disconnects, remove it
con.onDisconnect().removeValue();
// when I disconnect, update the last time I was seen online
lastOnlineRef.onDisconnect().setValue(ServerValue.TIMESTAMP);
}
}
@Override
public void onCancelled(FirebaseError error) {
System.err.println("Listener was cancelled at .info/connected");
}
});
问题是我不知道什么时候会触发 onDisconnect 事件?!
每次我打开应用程序时,我都会将 TRUE 写入节点“users/joe/connections”,但是当我关闭应用程序时,什么也不会发生。
当我关闭 WIFI 时,布尔参数也不会被删除。
onDisconnect-event 仅在我强行停止我的应用程序或重新安装此应用程序时或在我无法确定的其他时候触发。
因此,据我所知,我必须手动处理此类事件:
1) 关闭我的应用程序;
2) 关闭 WiFi;
3) 也许是别的东西
用于在我的应用程序中创建状态功能?但是然后 onDisconnect-event 什么时候被解雇?
客户端和服务器断开连接可能会出现两种情况:
- 客户端明确断开与服务器的连接
- 客户就这么消失了
当您终止应用程序时,您会触发显式断开连接。在这种情况下,客户端将向服务器发送一个正在断开连接的信号,服务器将立即执行 onDisconnect
回调。
当您关闭 wifi 时,您的应用程序没有机会告诉服务器它正在断开连接。在这种情况下,一旦服务器检测到客户端消失,onDisconnect
就会触发。这可能需要几分钟,具体取决于套接字超时的配置方式。所以在那种情况下,你只需要多一点耐心。
如果这个时间间隔对您来说不够精细,您能做的最好的事情就是定期更新数据库中所谓的 keep-alive 值,时间间隔更短。这样您就可以看到客户端最近处于活动状态的时间,如果太久以前就可以采取行动。
当用户退出应用程序时,您可以调用 admin.database().goOffline()
以显式断开与 firebase 的连接,这应该会触发 onDisconnect
回调。当用户返回应用程序时,只需调用 admin.database().goOnline()
重新连接 firebase。
我正在为我的 android 应用程序使用 Firebase 后端。我想为我的聊天构建一个用户状态系统。为此,我采用了 Firebase Guide
中的模式final Firebase myConnectionsRef = new Firebase("https://<YOUR-FIREBASE-APP>.firebaseio.com/users/joe/connections");
// stores the timestamp of my last disconnect (the last time I was seen online)
final Firebase lastOnlineRef = new Firebase("https://<YOUR-FIREBASE-APP>.firebaseio.com/users/joe/lastOnline");
final Firebase connectedRef = new Firebase("https://<YOUR-FIREBASE-APP>.firebaseio.com/.info/connected");
connectedRef.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot snapshot) {
boolean connected = snapshot.getValue(Boolean.class);
if (connected) {
// add this device to my connections list
// this value could contain info about the device or a timestamp too
Firebase con = myConnectionsRef.push();
con.setValue(Boolean.TRUE);
// when this device disconnects, remove it
con.onDisconnect().removeValue();
// when I disconnect, update the last time I was seen online
lastOnlineRef.onDisconnect().setValue(ServerValue.TIMESTAMP);
}
}
@Override
public void onCancelled(FirebaseError error) {
System.err.println("Listener was cancelled at .info/connected");
}
});
问题是我不知道什么时候会触发 onDisconnect 事件?!
每次我打开应用程序时,我都会将 TRUE 写入节点“users/joe/connections”,但是当我关闭应用程序时,什么也不会发生。 当我关闭 WIFI 时,布尔参数也不会被删除。 onDisconnect-event 仅在我强行停止我的应用程序或重新安装此应用程序时或在我无法确定的其他时候触发。
因此,据我所知,我必须手动处理此类事件:
1) 关闭我的应用程序;
2) 关闭 WiFi;
3) 也许是别的东西
用于在我的应用程序中创建状态功能?但是然后 onDisconnect-event 什么时候被解雇?
客户端和服务器断开连接可能会出现两种情况:
- 客户端明确断开与服务器的连接
- 客户就这么消失了
当您终止应用程序时,您会触发显式断开连接。在这种情况下,客户端将向服务器发送一个正在断开连接的信号,服务器将立即执行 onDisconnect
回调。
当您关闭 wifi 时,您的应用程序没有机会告诉服务器它正在断开连接。在这种情况下,一旦服务器检测到客户端消失,onDisconnect
就会触发。这可能需要几分钟,具体取决于套接字超时的配置方式。所以在那种情况下,你只需要多一点耐心。
如果这个时间间隔对您来说不够精细,您能做的最好的事情就是定期更新数据库中所谓的 keep-alive 值,时间间隔更短。这样您就可以看到客户端最近处于活动状态的时间,如果太久以前就可以采取行动。
当用户退出应用程序时,您可以调用 admin.database().goOffline()
以显式断开与 firebase 的连接,这应该会触发 onDisconnect
回调。当用户返回应用程序时,只需调用 admin.database().goOnline()
重新连接 firebase。