trixnity-client
3.7.0-beta3
common
trixnity-client
/
net.folivo.trixnity.client.store.repository
/
MapRepository
Map
Repository
interface
MapRepository
<
K1
,
K2
,
V
>
Inheritors
MapDeleteByRoomIdRepository
GlobalAccountDataRepository
InMemoryMapRepository
Members
Functions
delete
Link copied to clipboard
abstract
suspend
fun
delete
(
firstKey
:
K1
,
secondKey
:
K2
)
delete
All
Link copied to clipboard
abstract
suspend
fun
deleteAll
(
)
get
Link copied to clipboard
abstract
suspend
fun
get
(
firstKey
:
K1
)
:
Map
<
K2
,
V
>
abstract
suspend
fun
get
(
firstKey
:
K1
,
secondKey
:
K2
)
:
V
?
save
Link copied to clipboard
abstract
suspend
fun
save
(
firstKey
:
K1
,
secondKey
:
K2
,
value
:
V
)
serialize
Key
Link copied to clipboard
abstract
fun
serializeKey
(
firstKey
:
K1
,
secondKey
:
K2
)
:
String