trixnity
Toggle table of contents
5.5.0-SNAPSHOT.CI-20260414.150409
common
Target filter
common
Switch theme
Search in API
Skip to content
trixnity
trixnity-client-repository-room
/
de.connect2x.trixnity.client.store.repository.room
/
StickyEventDao
Sticky
Event
Dao
interface
StickyEventDao
Inheritors
StickyEventDao_Impl
Members
Functions
delete
Link copied to clipboard
abstract
suspend
fun
delete
(
roomId
:
RoomId
,
type
:
String
,
sender
:
UserId
,
stickyKey
:
String
)
delete
All
Link copied to clipboard
abstract
suspend
fun
deleteAll
(
)
delete
By
Room
Id
Link copied to clipboard
abstract
suspend
fun
deleteByRoomId
(
roomId
:
RoomId
)
get
Link copied to clipboard
abstract
suspend
fun
get
(
roomId
:
RoomId
,
type
:
String
)
:
List
<
RoomStickyEvent
>
abstract
suspend
fun
get
(
roomId
:
RoomId
,
type
:
String
,
sender
:
UserId
,
stickyKey
:
String
)
:
RoomStickyEvent
?
get
By
End
Time
Before
Link copied to clipboard
abstract
suspend
fun
getByEndTimeBefore
(
before
:
Long
)
:
List
<
RoomStickyEvent
>
get
By
Event
Id
Link copied to clipboard
abstract
suspend
fun
getByEventId
(
roomId
:
RoomId
,
eventId
:
EventId
)
:
RoomStickyEvent
?
insert
Link copied to clipboard
abstract
suspend
fun
insert
(
entity
:
RoomStickyEvent
)