KtorReadCRUDRepoClient

class KtorReadCRUDRepoClient<ObjectType, IdType>(    baseUrl: String,     httpClient: <Error class: unknown class>,     objectType: <Error class: unknown class>,     paginationObjectType: <Error class: unknown class>,     paginationIdType: <Error class: unknown class>,     contentType: <Error class: unknown class>,     mapTypeInfo: <Error class: unknown class>,     idSerializer: suspend (IdType) -> String) : ReadCRUDRepo<ObjectType, IdType> (source)

Constructors

Link copied to clipboard
constructor(    baseUrl: String,     httpClient: <Error class: unknown class>,     objectType: <Error class: unknown class>,     paginationObjectType: <Error class: unknown class>,     paginationIdType: <Error class: unknown class>,     contentType: <Error class: unknown class>,     mapTypeInfo: <Error class: unknown class>,     idSerializer: suspend (IdType) -> String)

Functions

Link copied to clipboard
fun <ObjectType, IdType> ReadCRUDRepo<ObjectType, IdType>.cached(    kvCache: KVCache<IdType, ObjectType>,     locker: SmartRWLocker = SmartRWLocker(),     idGetter: (ObjectType) -> IdType): ReadCRUDCacheRepo<ObjectType, IdType>
fun <ObjectType, IdType> ReadCRUDRepo<ObjectType, IdType>.cached(    kvCache: KeyValueRepo<IdType, ObjectType>,     locker: SmartRWLocker = SmartRWLocker(),     idGetter: (ObjectType) -> IdType): FullReadCRUDCacheRepo<ObjectType, IdType>
Link copied to clipboard
open suspend override fun contains(id: IdType): Boolean
Link copied to clipboard
open suspend override fun count(): Long
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open suspend override fun getAll(): Map<IdType, ObjectType>
Link copied to clipboard
open suspend override fun getById(id: IdType): ObjectType?
Link copied to clipboard
open suspend override fun getByPagination(pagination: Pagination): PaginationResult<ObjectType>
Link copied to clipboard
open suspend override fun getIdsByPagination(pagination: Pagination): PaginationResult<IdType>
Link copied to clipboard
inline suspend fun ReadCRUDRepo<*, *>.maxPagePagination(): SimplePagination
Link copied to clipboard
inline fun <FromKey, FromValue, ToKey, ToValue> ReadCRUDRepo<ToValue, ToKey>.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 }): ReadCRUDRepo<FromValue, FromKey>