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>)
Link copied to clipboard
open suspend override fun unset(toUnset: List<String>)
Link copied to clipboard
open suspend override fun unsetWithValues(toUnset: List<File>)

Properties

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