Full
    open class FullReadKeyValueCacheRepo<Key, Value>(parentRepo: ReadKeyValueRepo<Key, Value>, kvCache: KeyValueRepo<Key, Value>, locker: SmartRWLocker = SmartRWLocker()) : ReadKeyValueRepo<Key, Value> , FullCacheRepo(source)
Inheritors
Constructors
Link copied to clipboard
                  constructor(parentRepo: ReadKeyValueRepo<Key, Value>, kvCache: KeyValueRepo<Key, Value>, locker: SmartRWLocker = SmartRWLocker())
Functions
Link copied to clipboard
                  Link copied to clipboard
                  fun <K, V, VI : Iterable<V>> ReadKeyValueRepo<K, VI>.asReadKeyValuesRepo(): ReadKeyValuesFromKeyValueRepo<K, V, VI>
Link copied to clipboard
                  fun <Key, Value> ReadKeyValueRepo<Key, Value>.cached(kvCache: KVCache<Key, Value>, locker: SmartRWLocker = SmartRWLocker()): ReadKeyValueCacheRepo<Key, Value>
fun <Key, Value> ReadKeyValueRepo<Key, Value>.cached(kvCache: KeyValueRepo<Key, Value>, locker: SmartRWLocker = SmartRWLocker()): FullReadKeyValueCacheRepo<Key, Value>
Link copied to clipboard
                  suspend fun <Id, Registered> ReadKeyValueRepo<Id, Registered>.diff(other: Map<Id, Registered>): MapDiff<Id, Registered>
Link copied to clipboard
                  fun <Key, Value> ReadKeyValueRepo<Key, Value>.directlyCached(kvCache: KeyValueRepo<Key, Value>, locker: SmartRWLocker = SmartRWLocker()): DirectFullReadKeyValueCacheRepo<Key, Value>
Link copied to clipboard
                  Invalidates its internal data. It may lead to autoreload of data. In case when repo makes autoreload, it must do loading of data before clear
Link copied to clipboard
                  This method should use sorted by Keys search and return the PaginationResult. By default, it should use ascending sort for Keys
open suspend override fun keys(v: Value, pagination: Pagination, reversed: Boolean): PaginationResult<Key>
This method should use sorted by Keys search and return the PaginationResult. By default, it should use ascending sort for Keys.
Link copied to clipboard
                  Link copied to clipboard
                  open suspend override fun values(pagination: Pagination, reversed: Boolean): PaginationResult<Value>
This method should use sorted by Keys search and return the PaginationResult. By default, it should use ascending sort for Keys
Link copied to clipboard
                  inline fun <FromKey, FromValue, ToKey, ToValue> ReadKeyValueRepo<ToKey, ToValue>.withMapper(mapper: MapperRepo<FromKey, FromValue, ToKey, ToValue>): ReadKeyValueRepo<FromKey, FromValue>
inline fun <FromKey, FromValue, ToKey, ToValue> ReadKeyValueRepo<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 }): ReadKeyValueRepo<FromKey, FromValue>