setPersistenceEnabled

actual fun setPersistenceEnabled(enabled: Boolean)(source)
expect fun setPersistenceEnabled(enabled: Boolean)(source)

The Firebase Database client will cache synchronized data and keep track of all writes you've initiated while your application is running. It seamlessly handles intermittent network connections and re-sends write operations when the network connection is restored.

However by default your write operations and cached data are only stored in-memory and will be lost when your app restarts. By setting this value to true, the data will be persisted to on-device (disk) storage and will thus be available again when the app is restarted (even when there is no network connectivity at that time). Note that this method must be called before creating your first Database reference and only needs to be called once per application.

Parameters

enabled

Set to true to enable disk persistence, set to false to disable it.

actual fun setPersistenceEnabled(enabled: Boolean)(source)
actual fun setPersistenceEnabled(enabled: Boolean)(source)
actual fun setPersistenceEnabled(enabled: Boolean)(source)