Timeline Event Relation Repository
interface TimelineEventRelationRepository : MapDeleteByRoomIdRepository<TimelineEventRelationKey, RelationType, Set<TimelineEventRelation>>
Inheritors
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
abstract suspend fun get(firstKey: TimelineEventRelationKey): Map<RelationType, Set<TimelineEventRelation>>
abstract suspend fun get(firstKey: TimelineEventRelationKey, secondKey: RelationType): Set<TimelineEventRelation>?
Link copied to clipboard
abstract suspend fun save(firstKey: TimelineEventRelationKey, secondKey: RelationType, value: Set<TimelineEventRelation>)
Link copied to clipboard