ValueStore

interface ValueStore<K : Any, V>

Functions

read
Link copied to clipboard
common
abstract suspend fun read(key: K): V?
remove
Link copied to clipboard
common
abstract suspend fun remove(key: K)
write
Link copied to clipboard
common
abstract suspend fun write(key: K, value: V)

Inheritors

MemoryValueStore
Link copied to clipboard