aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/seld/signal/signal_handler.rs
blob: 5b5254a0c12a60dcb8ad71ecda12f6e3572d335d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#[derive(Debug)]
pub struct SignalHandler;

impl SignalHandler {
    pub const SIGINT: &'static str = "SIGINT";
    pub const SIGTERM: &'static str = "SIGTERM";
    pub const SIGHUP: &'static str = "SIGHUP";

    pub fn create(_signals: Vec<String>, _callback: Box<dyn Fn(String, &SignalHandler)>) -> Self {
        todo!()
    }

    pub fn unregister(&self) {
        todo!()
    }

    pub fn exit_with_last_signal(&self) {
        todo!()
    }

    pub fn is_triggered(&self) -> bool {
        todo!()
    }
}