2022-09-06 23:15:09 +02:00
|
|
|
use std::sync::Arc;
|
|
|
|
|
|
2023-11-29 21:36:02 -05:00
|
|
|
use crate::{
|
|
|
|
|
service::rooms::timeline::{data::PduData, PduCount},
|
|
|
|
|
Result,
|
|
|
|
|
};
|
2023-06-26 12:38:51 +02:00
|
|
|
use ruma::{EventId, RoomId, UserId};
|
2022-09-06 23:15:09 +02:00
|
|
|
|
2022-10-05 15:33:57 +02:00
|
|
|
pub trait Data: Send + Sync {
|
2023-06-25 19:31:40 +02:00
|
|
|
fn add_relation(&self, from: u64, to: u64) -> Result<()>;
|
2023-06-26 12:38:51 +02:00
|
|
|
fn relations_until<'a>(
|
|
|
|
|
&'a self,
|
|
|
|
|
user_id: &'a UserId,
|
|
|
|
|
room_id: u64,
|
|
|
|
|
target: u64,
|
|
|
|
|
until: PduCount,
|
2023-11-29 21:36:02 -05:00
|
|
|
) -> PduData<'a>;
|
2022-06-25 16:12:23 +02:00
|
|
|
fn mark_as_referenced(&self, room_id: &RoomId, event_ids: &[Arc<EventId>]) -> Result<()>;
|
|
|
|
|
fn is_event_referenced(&self, room_id: &RoomId, event_id: &EventId) -> Result<bool>;
|
|
|
|
|
fn mark_event_soft_failed(&self, event_id: &EventId) -> Result<()>;
|
|
|
|
|
fn is_event_soft_failed(&self, event_id: &EventId) -> Result<bool>;
|
|
|
|
|
}
|