Ktor CRUDRepo Client
inline fun <ObjectType, IdType, InputValue> KtorCRUDRepoClient(baseUrl: String, httpClient: <Error class: unknown class>, idsSerializer: KSerializer<IdType>, serialFormat: StringFormat, contentType: <Error class: unknown class>): KtorCRUDRepoClient<ObjectType, IdType, InputValue>
inline fun <ObjectType, IdType, InputValue> KtorCRUDRepoClient(baseUrl: String, httpClient: <Error class: unknown class>, idsSerializer: KSerializer<IdType>, serialFormat: BinaryFormat, contentType: <Error class: unknown class>): KtorCRUDRepoClient<ObjectType, IdType, InputValue>
inline fun <ObjectType, IdType, InputValue> KtorCRUDRepoClient(baseUrl: String, subpart: String, httpClient: <Error class: unknown class>, contentType: <Error class: unknown class>, newObjectsFlow: Flow<ObjectType> = httpClient.createStandardWebsocketFlow(
buildStandardUrl(baseUrl, newObjectsFlowRouting),
), updatedObjectsFlow: Flow<ObjectType> = httpClient.createStandardWebsocketFlow(
buildStandardUrl(baseUrl, updatedObjectsFlowRouting),
), deletedObjectsIdsFlow: Flow<IdType> = httpClient.createStandardWebsocketFlow(
buildStandardUrl(baseUrl, deletedObjectsIdsFlowRouting),
), noinline idSerializer: suspend (IdType) -> String): KtorCRUDRepoClient<ObjectType, IdType, InputValue>
inline fun <ObjectType, IdType, InputValue> KtorCRUDRepoClient(baseUrl: String, subpart: String, httpClient: <Error class: unknown class>, idsSerializer: KSerializer<IdType>, serialFormat: StringFormat, contentType: <Error class: unknown class>): KtorCRUDRepoClient<ObjectType, IdType, InputValue>
inline fun <ObjectType, IdType, InputValue> KtorCRUDRepoClient(baseUrl: String, subpart: String, httpClient: <Error class: unknown class>, idsSerializer: KSerializer<IdType>, serialFormat: BinaryFormat, contentType: <Error class: unknown class>): KtorCRUDRepoClient<ObjectType, IdType, InputValue>