Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Firebase RemoteConfig fetch keep listening for changes?

When Firebase RemoteConfig fetch is invoked, the closure gets called asynchronously when the data is available. After the initial result is returned, does the closure keep listening for changes or de we have to call fetch again?

like image 455
HixField Avatar asked Sep 18 '18 14:09

HixField


People also ask

Is Firebase remote config real time?

Using the Remote Config background function triggering provided by Cloud Functions for Firebase along with FCM, you can propagate Remote Config updates in real-time.

What is Firebase RemoteConfig?

Firebase Remote Config is a cloud service that lets you change the behavior and appearance of your app without requiring users to download an app update. When using Remote Config, you create in-app default values that control the behavior and appearance of your app.


1 Answers

I am afraid there is no listener for further changes.

If you want to listen to changes in real time you need to propagate the change through some notification mechanism: Firebase provides an official guide on this.

like image 142
dnhyde Avatar answered Jan 02 '23 11:01

dnhyde