hydra 0.1.40

A framework for writing fault tolerant, highly scalable applications with the Rust programming language.
Documentation
use std::net::SocketAddr;

use crate::NodeState;
use crate::Pid;

/// Node registration information.
pub struct NodeRegistration {
    /// The process responsible for this node.
    pub supervisor: Option<Pid>,
    /// The process responsible for sending outbound messages for this node.
    pub sender: Option<Pid>,
    /// The process responsible for receiving messages for this node.
    pub receiver: Option<Pid>,
    /// The state of this node.
    pub state: NodeState,
    /// The name of this node.
    pub name: String,
    /// The broadcast address of this node.
    pub broadcast_address: SocketAddr,
}

impl NodeRegistration {
    /// Constructs a new [NodeRegistration] from a given process, name, and broadcast address.
    pub fn new(
        supervisor: Option<Pid>,
        state: NodeState,
        name: String,
        broadcast_address: SocketAddr,
    ) -> Self {
        Self {
            supervisor,
            sender: None,
            receiver: None,
            state,
            name,
            broadcast_address,
        }
    }
}