Ktor Write Crud Repo Client
fun <ObjectType, IdType, InputValue> KtorWriteCrudRepoClient( baseUrl: String, httpClient: <ERROR CLASS>, newObjectsFlow: Flow<ObjectType>, updatedObjectsFlow: Flow<ObjectType>, deletedObjectsIdsFlow: Flow<IdType>, createSetup: suspend <ERROR CLASS>.(List<InputValue>) -> Unit, updateSetup: suspend <ERROR CLASS>.(List<UpdatedValuePair<IdType, InputValue>>) -> Unit, deleteByIdSetup: suspend <ERROR CLASS>.(List<IdType>) -> Unit, createBodyGetter: suspend <ERROR CLASS>.() -> List<ObjectType>, updateBodyGetter: suspend <ERROR CLASS>.() -> List<ObjectType>)
Content copied to clipboard