hydra 0.1.40

A framework for writing fault tolerant, highly scalable applications with the Rust programming language.
Documentation
use bincode::Decode;
use bincode::Encode;

/// The frame used to install or destroy a process monitor.
#[derive(Debug, Encode, Decode)]
pub struct Monitor {
    pub install: bool,
    pub process_id: Option<u64>,
    pub process_name: Option<String>,
    pub from_id: Option<u64>,
    pub reference_id: u64,
}

impl Monitor {
    /// Constructs a new instance of [Monitor] frame.
    pub const fn new(
        install: bool,
        process_id: Option<u64>,
        process_name: Option<String>,
        from_id: Option<u64>,
        reference_id: u64,
    ) -> Self {
        Self {
            install,
            process_id,
            process_name,
            from_id,
            reference_id,
        }
    }
}