Room Account Data Repository
interface RoomAccountDataRepository : MapDeleteByRoomIdRepository<RoomAccountDataRepositoryKey, String, Event.RoomAccountDataEvent<*>>
Inheritors
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
abstract suspend fun get(key: RoomAccountDataRepositoryKey): Map<String, Event.RoomAccountDataEvent<*>>?
Link copied to clipboard
abstract suspend fun getBySecondKey(firstKey: RoomAccountDataRepositoryKey, secondKey: String): Event.RoomAccountDataEvent<*>?
Link copied to clipboard
abstract suspend fun save(key: RoomAccountDataRepositoryKey, value: Map<String, Event.RoomAccountDataEvent<*>>)
Link copied to clipboard
abstract suspend fun saveBySecondKey(firstKey: RoomAccountDataRepositoryKey, secondKey: String, value: Event.RoomAccountDataEvent<*>)
Link copied to clipboard