GlobalAccountDataRepository

interface GlobalAccountDataRepository : MapRepository<String, String, ClientEvent.GlobalAccountDataEvent<*>>

Inheritors

Functions

Link copied to clipboard
abstract suspend fun delete(firstKey: String, secondKey: String)
Link copied to clipboard
abstract suspend fun deleteAll()
Link copied to clipboard
abstract suspend fun get(firstKey: String): Map<String, ClientEvent.GlobalAccountDataEvent<*>>
abstract suspend fun get(firstKey: String, secondKey: String): ClientEvent.GlobalAccountDataEvent<*>?
Link copied to clipboard
abstract suspend fun save(firstKey: String, secondKey: String, value: ClientEvent.GlobalAccountDataEvent<*>)
Link copied to clipboard
open override fun serializeKey(firstKey: String, secondKey: String): String