Write Map CRUDRepo
abstract class WriteMapCRUDRepo<ObjectType, IdType, InputValueType>(map: MutableMap<IdType, ObjectType> = mutableMapOf()) : WriteCRUDRepo<ObjectType, IdType, InputValueType>
Content copied to clipboard
Constructors
Link copied to clipboard
fun <ObjectType, IdType> WriteMapCRUDRepo(map: MutableMap<IdType, ObjectType> = mutableMapOf())
Content copied to clipboard
Functions
Link copied to clipboard
open suspend override fun create(values: List<InputValueType>): List<ObjectType>
Content copied to clipboard
Link copied to clipboard
Link copied to clipboard
open suspend override fun update(values: List<UpdatedValuePair<IdType, InputValueType>>): List<ObjectType>
Content copied to clipboard
open suspend override fun update(id: IdType, value: InputValueType): ObjectType?
Content copied to clipboard