OutboundMegolmSessionRepository

interface OutboundMegolmSessionRepository : MinimalRepository<RoomId, StoredOutboundMegolmSession>

Inheritors

Functions

Link copied to clipboard
abstract suspend fun delete(key: RoomId)
Link copied to clipboard
abstract suspend fun deleteAll()
Link copied to clipboard
abstract suspend fun get(key: RoomId): StoredOutboundMegolmSession?
Link copied to clipboard
abstract suspend fun save(key: RoomId, value: StoredOutboundMegolmSession)
Link copied to clipboard
open override fun serializeKey(key: RoomId): String