以编程方式断开与 firebase 的连接
Disconnect programmatically from firebase
如何以编程方式断开用户连接?
这是我的问题:我知道 firebase 的最大同时连接数是 100,但在我的应用程序中,我正在从数据库中检索所有数据,然后我不再需要它了,所以有可能吗以编程方式断开 phone 与 firebase 的连接?
正在调用:
FirebaseDatabase.getInstance().goOffline();
是去disconnect the connection from firebase programmatically. Putting the call at the end of your onStart callback is going to be the way to go, from the looks of it的路。希望对您有所帮助。
如何以编程方式断开用户连接?
这是我的问题:我知道 firebase 的最大同时连接数是 100,但在我的应用程序中,我正在从数据库中检索所有数据,然后我不再需要它了,所以有可能吗以编程方式断开 phone 与 firebase 的连接?
正在调用:
FirebaseDatabase.getInstance().goOffline();
是去disconnect the connection from firebase programmatically. Putting the call at the end of your onStart callback is going to be the way to go, from the looks of it的路。希望对您有所帮助。