hydra 0.1.40

A framework for writing fault tolerant, highly scalable applications with the Rust programming language.
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::Node;
use crate::Pid;

/// Represents an installed monitor's data for a process.
pub enum ProcessMonitor {
    /// A monitor installed to monitor the given process.
    ForProcess(Option<Pid>),
    /// A monitor installed to monitor the given node.
    ForNode(Node),
}