FileWriteKeyValueRepo

class FileWriteKeyValueRepo(folder: File, filesChangedProcessingScope: CoroutineScope? = null) : WriteKeyValueRepo<String, File>

Files watching will not correctly works on Android with version of API lower than API 26

Constructors

Link copied to clipboard
fun FileWriteKeyValueRepo(folder: File, filesChangedProcessingScope: CoroutineScope? = null)

Functions

Link copied to clipboard
open suspend override fun set(toSet: Map<String, File>)

Will set as batch toSet data in current repo. Must pass the data which were successfully updated in repo to onNewValue

Link copied to clipboard
open suspend override fun unset(toUnset: List<String>)

Will unset as batch data with keys from toUnset. Must pass the Keys which were successfully removed in repo to onValueRemoved

Link copied to clipboard
open suspend override fun unsetWithValues(toUnset: List<File>)

Will unset as batch data with values from toUnset. Must pass the Keys which were successfully removed in repo to onValueRemoved

Properties

Link copied to clipboard
open override val onNewValue: Flow<Pair<String, File>>

This flow must emit data each time when data by Key has been changed with set method or in any other way excluding cases of data removing

Link copied to clipboard
open override val onValueRemoved: Flow<String>

This flow must emit data each time when data by Key has been removed with unset/unsetWithValues methods or in any other way