Ktor Read Key Values Repo Client
class KtorReadKeyValuesRepoClient<Key, Value>(baseUrl: String, httpClient: <Error class: unknown class>, contentType: <Error class: unknown class>, paginationResultValuesTypeInfo: <Error class: unknown class>, paginationResultKeysTypeInfo: <Error class: unknown class>, keySerializer: suspend (Key) -> String, valueSerializer: suspend (Value) -> String) : ReadKeyValuesRepo<Key, Value>
Constructors
Link copied to clipboard
fun <Key, Value> KtorReadKeyValuesRepoClient(baseUrl: String, httpClient: <Error class: unknown class>, contentType: <Error class: unknown class>, paginationResultValuesTypeInfo: <Error class: unknown class>, paginationResultKeysTypeInfo: <Error class: unknown class>, keySerializer: suspend (Key) -> String, valueSerializer: suspend (Value) -> String)
Functions
Link copied to clipboard
open suspend override fun get(k: Key, pagination: Pagination, reversed: Boolean): PaginationResult<Value>
Link copied to clipboard
open suspend override fun keys(v: Value, pagination: Pagination, reversed: Boolean): PaginationResult<Key>
Extensions
Link copied to clipboard
Link copied to clipboard
inline fun <FromKey, FromValue, ToKey, ToValue> ReadKeyValuesRepo<ToKey, ToValue>.withMapper(mapper: MapperRepo<FromKey, FromValue, ToKey, ToValue>): ReadKeyValuesRepo<FromKey, FromValue>
inline fun <FromKey, FromValue, ToKey, ToValue> ReadKeyValuesRepo<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 }): ReadKeyValuesRepo<FromKey, FromValue>