pub struct SimpleNotificationStore {
pub data: Arc<RwLock<HashMap<Uuid, HashMap<Uuid, NotificationData>>>>,
pub notification_vs_job: Arc<RwLock<HashMap<Uuid, Uuid>>>,
pub inited: bool,
}
Fields§
§data: Arc<RwLock<HashMap<Uuid, HashMap<Uuid, NotificationData>>>>
§notification_vs_job: Arc<RwLock<HashMap<Uuid, Uuid>>>
§inited: bool
Trait Implementations§
Source§impl Default for SimpleNotificationStore
impl Default for SimpleNotificationStore
Source§impl NotificationStore for SimpleNotificationStore
impl NotificationStore for SimpleNotificationStore
fn list_notification_guids_for_job_and_state( &mut self, job_id: Uuid, state: JobState, ) -> Pin<Box<dyn Future<Output = Result<Vec<Uuid>, JobSchedulerError>> + Send>>
fn list_notification_guids_for_job_id( &mut self, job_id: Uuid, ) -> Pin<Box<dyn Future<Output = Result<Vec<Uuid>, JobSchedulerError>> + Send>>
fn delete_notification_for_state( &mut self, notification_id: Uuid, state: JobState, ) -> Pin<Box<dyn Future<Output = Result<bool, JobSchedulerError>> + Send>>
fn delete_for_job( &mut self, job_id: Uuid, ) -> Pin<Box<dyn Future<Output = Result<(), JobSchedulerError>> + Send>>
Auto Trait Implementations§
impl Freeze for SimpleNotificationStore
impl !RefUnwindSafe for SimpleNotificationStore
impl Send for SimpleNotificationStore
impl Sync for SimpleNotificationStore
impl Unpin for SimpleNotificationStore
impl !UnwindSafe for SimpleNotificationStore
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more