surrealdb_core/ctx/canceller.rs
use std::sync::atomic::{AtomicBool, Ordering};
use std::sync::Arc;
#[derive(Default, Clone)]
#[non_exhaustive]
pub struct Canceller {
/// A reference to the canceled value of a context.
cancelled: Arc<AtomicBool>,
}
impl Canceller {
/// Create a new Canceller
pub fn new(cancelled: Arc<AtomicBool>) -> Canceller {
Canceller {
cancelled,
}
}
/// Cancel the context.
pub fn cancel(&self) {
self.cancelled.store(true, Ordering::Relaxed);
}
}