Reputation: 131
In my application there are several requests that are made during execution and one that is made at the end. I would like the one that runs at the end to be sure to arrive, so I would like to enable offline functionality on this last request but not sure about the others. Is this possible and if so how to do it?
Thanks for your attention
Upvotes: 0
Views: 39
Reputation: 598728
There is no way to control offline availability on a granular level in the Firebase Realtime Database API. Offline disk caching is either on or off, and when it's on Firebase caches all recent data it receives, and all pending writes.
Upvotes: 1