InMemoryRoomAccountDataRepository

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
abstract suspend fun delete(key: RoomAccountDataRepositoryKey)
Link copied to clipboard
abstract suspend fun deleteAll()
Link copied to clipboard
abstract suspend fun deleteBySecondKey(firstKey: RoomAccountDataRepositoryKey, secondKey: String)
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
open override fun serializeKey(firstKey: RoomAccountDataRepositoryKey, secondKey: String): String

Properties

Link copied to clipboard
val content: MutableStateFlow<Map<RoomAccountDataRepositoryKey, Map<String, Event.RoomAccountDataEvent<*>>>>