androidx.datastore.preferences.rxjava3

Classes

RxPreferenceDataStoreBuilder

Builder for a Preferences RxDataStore that works on a single process.

Top-level functions summary

ReadOnlyProperty<ContextRxDataStore<Preferences>>
rxPreferencesDataStore(
    name: String,
    corruptionHandler: ReplaceFileCorruptionHandler<Preferences>?,
    produceMigrations: (Context) -> List<DataMigration<Preferences>>,
    scheduler: Scheduler
)

Creates a property delegate for a single process Preferences DataStore.

Top-level functions

fun rxPreferencesDataStore(
    name: String,
    corruptionHandler: ReplaceFileCorruptionHandler<Preferences>? = null,
    produceMigrations: (Context) -> List<DataMigration<Preferences>> = { listOf() },
    scheduler: Scheduler = Schedulers.io()
): ReadOnlyProperty<ContextRxDataStore<Preferences>>

Creates a property delegate for a single process Preferences DataStore. This should only be called once in a file (at the top level), and all usages of the DataStore should use a reference the same Instance. The receiver type for the property delegate must be an instance of Context.

This should only be used from a single application in a single classloader in a single process.

Example usage:

val Context.myRxDataStore by rxPreferencesDataStore("filename", serializer)

class SomeClass(val context: Context) {
fun update(): Single<Preferences> = context.myRxDataStore.updateDataAsync {...}
}
Parameters
name: String

The name of the preferences. The preferences will be stored in a file in the "datastore/" subdirectory in the application context's files directory and is generated using preferencesDataStoreFile.

corruptionHandler: ReplaceFileCorruptionHandler<Preferences>? = null

The corruptionHandler is invoked if DataStore encounters a androidx.datastore.core.CorruptionException when attempting to read data. CorruptionExceptions are thrown by serializers when data can not be de-serialized.

produceMigrations: (Context) -> List<DataMigration<Preferences>> = { listOf() }

produce the migrations. The ApplicationContext is passed in to these callbacks as a parameter. DataMigrations are run before any access to data can occur. Each producer and migration may be run more than once whether or not it already succeeded (potentially because another migration failed or a write to disk failed.)

scheduler: Scheduler = Schedulers.io()

The scope in which IO operations and transform functions will execute.

Returns
ReadOnlyProperty<ContextRxDataStore<Preferences>>

a property delegate that manages a datastore as a singleton.