Is it possible to send a synchronous request in the Firebase?

前端 未结 4 1438
无人共我
无人共我 2020-12-17 10:51

I\'m using Firebase Android SDK and became interested in sending synchronous request instead of asynchronous. According to the documentation, in any request cal

4条回答
  •  Happy的楠姐
    2020-12-17 11:16

    It is not possible to load data synchronously with the official SDK. However, you can access all the data in firebase using the REST API. This would allow you to make synchronous calls. As mentioned about, Firebase is a realtime database and you will be missing the feature of updates when your data changes.

提交回复
热议问题