Functions

Link copied to clipboard
abstract suspend fun delete(key: RoomStateRepositoryKey)
Link copied to clipboard
abstract suspend fun deleteAll()
Link copied to clipboard
abstract suspend fun deleteBySecondKey(firstKey: RoomStateRepositoryKey, secondKey: String)
Link copied to clipboard
abstract suspend fun get(key: RoomStateRepositoryKey): Map<String, Event<*>>?
Link copied to clipboard
abstract suspend fun getBySecondKey(firstKey: RoomStateRepositoryKey, secondKey: String): Event<*>?
Link copied to clipboard
abstract suspend fun save(key: RoomStateRepositoryKey, value: Map<String, Event<*>>)
Link copied to clipboard
abstract suspend fun saveBySecondKey(firstKey: RoomStateRepositoryKey, secondKey: String, value: Event<*>)
Link copied to clipboard
open override fun serializeKey(key: RoomStateRepositoryKey): String
open override fun serializeKey(firstKey: RoomStateRepositoryKey, secondKey: String): String