trixnity-client
Toggle table of contents
4.14.1
common
Platform filter
common
Switch theme
Search in API
trixnity-client
trixnity-client
/
net.folivo.trixnity.client.store.repository
/
InMemoryRoomOutboxMessageRepository
In
Memory
Room
Outbox
Message
Repository
class
InMemoryRoomOutboxMessageRepository
:
InMemoryFullRepository
<
RoomOutboxMessageRepositoryKey
,
RoomOutboxMessage
<
*
>
>
,
RoomOutboxMessageRepository
Members
Constructors
In
Memory
Room
Outbox
Message
Repository
Link copied to clipboard
constructor
(
)
Properties
content
Link copied to clipboard
val
content
:
MutableStateFlow
<
Map
<
RoomOutboxMessageRepositoryKey
,
RoomOutboxMessage
<
*
>
>
>
Functions
delete
Link copied to clipboard
abstract
suspend
fun
delete
(
key
:
RoomOutboxMessageRepositoryKey
)
delete
All
Link copied to clipboard
abstract
suspend
fun
deleteAll
(
)
delete
By
Room
Id
Link copied to clipboard
open
suspend override
fun
deleteByRoomId
(
roomId
:
RoomId
)
get
Link copied to clipboard
abstract
suspend
fun
get
(
key
:
RoomOutboxMessageRepositoryKey
)
:
RoomOutboxMessage
<
*
>
?
get
All
Link copied to clipboard
abstract
suspend
fun
getAll
(
)
:
List
<
RoomOutboxMessage
<
*
>
>
save
Link copied to clipboard
abstract
suspend
fun
save
(
key
:
RoomOutboxMessageRepositoryKey
,
value
:
RoomOutboxMessage
<
*
>
)
serialize
Key
Link copied to clipboard
open
override
fun
serializeKey
(
key
:
RoomOutboxMessageRepositoryKey
)
:
String