GlobalAccountDataRepository

interface GlobalAccountDataRepository : TwoDimensionsRepository<String, String, Event.GlobalAccountDataEvent<*>>

Functions

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

Inheritors

Link copied to clipboard