MapperWriteKeyValueRepo

Write-only key-value repository adapter that applies type mapping via MapperRepo. Converts outer (From) key/value types to inner (To) types before delegating writes to to, and maps emitted flow values back from inner to outer types.

Parameters

to

The underlying WriteKeyValueRepo to delegate operations to

mapper

The MapperRepo providing bidirectional key/value type conversions

Type Parameters

FromKey

The outer key type exposed by this repo

FromValue

The outer value type exposed by this repo

ToKey

The inner key type used by the underlying to repo

ToValue

The inner value type used by the underlying to repo

Constructors

Link copied to clipboard

Properties

Link copied to clipboard

Provides a mapper for converting keys between inner and outer types.

Link copied to clipboard
open override val onNewValue: Flow<Pair<FromKey, FromValue>>

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<FromKey>

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

Link copied to clipboard

Provides a mapper for converting values between inner and outer types.

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
fun <Key, Value> WriteKeyValueRepo<Key, Value>.directlyCached(kvCache: KeyValueRepo<Key, Value>, scope: CoroutineScope = CoroutineScope(Dispatchers.Default)): DirectFullWriteKeyValueCacheRepo<Key, Value>
Link copied to clipboard
open suspend override fun set(toSet: Map<FromKey, FromValue>)

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
inline suspend fun <Key, Value> WriteKeyValueRepo<Key, Value>.set(toSet: List<Pair<Key, Value>>)

List overload of WriteKeyValueRepo.set accepting a list of pairs.

inline suspend fun <Key, Value> WriteKeyValueRepo<Key, Value>.set(vararg toSet: Pair<Key, Value>)

Vararg overload of WriteKeyValueRepo.set accepting pairs.

inline suspend fun <Key, Value> WriteKeyValueRepo<Key, Value>.set(k: Key, v: Value)

Single-entry overload of WriteKeyValueRepo.set.

Link copied to clipboard
open suspend override fun ToKey.toInnerKey(): FromKey

Converts a key from the outer type to the inner type.

Link copied to clipboard
open suspend override fun ToValue.toInnerValue(): FromValue

Converts a value from the outer type to the inner type.

Link copied to clipboard
open suspend override fun FromKey.toOutKey(): ToKey

Converts a key from the inner type to the outer type.

Link copied to clipboard
open suspend override fun FromValue.toOutValue(): ToValue

Converts a value from the inner type to the outer type.

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

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
inline suspend fun <Key, Value> WriteKeyValueRepo<Key, Value>.unset(vararg k: Key)

Vararg overload of WriteKeyValueRepo.unset.

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

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
inline suspend fun <Key, Value> WriteKeyValueRepo<Key, Value>.unsetWithValues(vararg v: Value)
Link copied to clipboard

Wraps this WriteKeyValueRepo with a MapperRepo to expose a mapped WriteKeyValueRepo.

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>

Wraps this WriteKeyValueRepo with inline conversion lambdas to expose a mapped WriteKeyValueRepo.