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