surrealpatch/lib/src/ctx/canceller.rs
2022-02-22 14:16:50 +00:00

21 lines
430 B
Rust

use std::sync::atomic::{AtomicBool, Ordering};
use std::sync::Arc;
#[derive(Default)]
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::SeqCst);
}
}