Jump to top

ConfigUpdateObserver

interface

Observer interface for receiving real-time Remote Config update notifications.

NOTE: Although an complete callback can be provided, it will never be called because the ConfigUpdate stream is never-ending.

Properties

complete

</>

Called when the stream is gracefully terminated.

complete: () => void;

error

</>

Called if an error occurs during the stream.

error: (error: FirebaseError) => void;

next

</>

Called when a new ConfigUpdate is available.

next: (configUpdate: ConfigUpdate) => void;