mirror of
https://github.com/lune-org/mlua-luau-scheduler.git
synced 2025-04-03 01:50:57 +01:00
31 lines
620 B
Rust
31 lines
620 B
Rust
use std::{cell::Cell, process::ExitCode, rc::Rc};
|
|
|
|
use event_listener::Event;
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub(crate) struct Exit {
|
|
code: Rc<Cell<Option<ExitCode>>>,
|
|
event: Rc<Event>,
|
|
}
|
|
|
|
impl Exit {
|
|
pub fn new() -> Self {
|
|
Self {
|
|
code: Rc::new(Cell::new(None)),
|
|
event: Rc::new(Event::new()),
|
|
}
|
|
}
|
|
|
|
pub fn set(&self, code: ExitCode) {
|
|
self.code.set(Some(code));
|
|
self.event.notify(usize::MAX);
|
|
}
|
|
|
|
pub fn get(&self) -> Option<ExitCode> {
|
|
self.code.get()
|
|
}
|
|
|
|
pub async fn listen(&self) {
|
|
self.event.listen().await;
|
|
}
|
|
}
|