Ktor Write Key Value Repo Client
class KtorWriteKeyValueRepoClient<Key, Value>(baseUrl: String, httpClient: <Error class: unknown class>, contentType: <Error class: unknown class>, val onNewValue: Flow<Pair<Key, Value>>, val onValueRemoved: Flow<Key>, idsListTypeInfo: <Error class: unknown class>, objectsListTypeInfo: <Error class: unknown class>, idsToObjectsMapTypeInfo: <Error class: unknown class>) : WriteKeyValueRepo<Key, Value> (source)
Constructors
Link copied to clipboard
constructor(baseUrl: String, httpClient: <Error class: unknown class>, contentType: <Error class: unknown class>, onNewValue: Flow<Pair<Key, Value>>, onValueRemoved: Flow<Key>, idsListTypeInfo: <Error class: unknown class>, objectsListTypeInfo: <Error class: unknown class>, idsToObjectsMapTypeInfo: <Error class: unknown class>)
Properties
Link copied to clipboard
Link copied to clipboard
This flow must emit data each time when data by Key has been removed with unset/unsetWithValues methods or in any other way
Functions
Link copied to clipboard
fun <Key, Value> WriteKeyValueRepo<Key, Value>.caching(kvCache: KeyValueRepo<Key, Value>, scope: CoroutineScope = CoroutineScope(Dispatchers.Default)): FullWriteKeyValueCacheRepo<Key, Value>
Link copied to clipboard
Link copied to clipboard
Will unset as batch data with values from toUnset. Must pass the Keys which were successfully removed in repo to onValueRemoved
Link copied to clipboard
Link copied to clipboard
inline fun <FromKey, FromValue, ToKey, ToValue> WriteKeyValueRepo<ToKey, ToValue>.withMapper(mapper: MapperRepo<FromKey, FromValue, ToKey, ToValue>): WriteKeyValueRepo<FromKey, FromValue>
inline fun <FromKey, FromValue, ToKey, ToValue> WriteKeyValueRepo<ToKey, ToValue>.withMapper(noinline keyFromToTo: suspend FromKey.() -> ToKey = { this as ToKey }, noinline valueFromToTo: suspend FromValue.() -> ToValue = { this as ToValue }, noinline keyToToFrom: suspend ToKey.() -> FromKey = { this as FromKey }, noinline valueToToFrom: suspend ToValue.() -> FromValue = { this as FromValue }): WriteKeyValueRepo<FromKey, FromValue>