是否使用计数“同时连接”实时数据库侦听客户端的连接状态?
let connectedRef = FIRDatabase.database().referenceWithPath(".info/connected")
connectedRef.observeEventType(.Value, withBlock: { snapshot in
if let connected = snapshot.value as? Bool where connected {
print("Connected")
} else {
我正在将数据从我的android应用程序发送到一个实时的防火墙数据库。
我想检查firebase何时完成将这些项添加到数据库中,因为我将在服务器上调用一个脚本,该脚本将访问数据库中的数据(通过异步任务)。
但是在调用脚本之前,我需要确保firebase已经完成了所有项的添加,以避免数据中的任何冲突。代码应该是这样的:
myRef.child(userID).setValue(items); //add items to firebase database
new SendPostRequest().execute(); //call script on the server that wil
我已经在桌面上安装了Oracle数据库11g。当我试图获得lsnrctl的状态时,我会收到如下消息。
Services Summary...
Service "CLRExtProc" has 1 instance(s).
Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
The command completed successfully
如何摆脱这条信息,是什么导致了这一切?