2022-09-06 23:15:09 +02:00
|
|
|
use std::sync::Arc;
|
|
|
|
|
|
2022-09-07 13:25:51 +02:00
|
|
|
use crate::Result;
|
2022-10-05 20:34:31 +02:00
|
|
|
use ruma::{EventId, RoomId};
|
2022-09-06 23:15:09 +02:00
|
|
|
|
2022-10-05 15:33:57 +02:00
|
|
|
pub trait Data: Send + Sync {
|
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>;
|
|
|
|
|
}
|