Problem - repeating piece of code when using DataStore Preferences and Kotlin Flow.
What Im talking about:
override fun readSomeData(): Flow<String> {
return dataStore.data
.catch { exception ->
if (exception is IOException) {
emit(emptyPreferences())
} else {
throw exception
}
}
.map { preferences ->
preferences[PreferencesKey.someValue] ?: "null value"
}
}
Is it possible to put the functionality inside the .catch { exception } in a separate function, with the ability to change Kotlin Flow?
You can create a
suspend
extension function onFlowCollector
type and reuse it:Or if you want to reuse the whole
catch
statement you can create an extension function onFlow
: