OlmSessionRepository

interface OlmSessionRepository : MinimalRepository<Key.Curve25519Key, Set<StoredOlmSession>>

Inheritors

Functions

Link copied to clipboard
abstract suspend fun delete(key: Key.Curve25519Key)
Link copied to clipboard
abstract suspend fun deleteAll()
Link copied to clipboard
abstract suspend fun get(key: Key.Curve25519Key): Set<StoredOlmSession>?
Link copied to clipboard
abstract suspend fun save(key: Key.Curve25519Key, value: Set<StoredOlmSession>)
Link copied to clipboard
open override fun serializeKey(key: Key.Curve25519Key): String