rabble 0.4.1

A library for creating location transparent actor based systems
Documentation
1
2
3
4
5
6
7
8
9
use std::collections::HashSet;
use node_id::NodeId;

#[derive(Debug, Clone, Eq, PartialEq, Serialize, Deserialize)]
pub struct ClusterStatus {
    pub members: HashSet<NodeId>,
    pub established: HashSet<NodeId>,
    pub num_connections: usize
}