atomr-cluster-tools 0.9.2

Distributed pub/sub, cluster singleton, and cluster client patterns for atomr.
Documentation
1
2
3
4
5
6
7
8
9
10
//! atomr-cluster-tools.
//! `src/contrib/cluster/`.

mod cluster_client;
mod cluster_singleton;
mod pub_sub;

pub use cluster_client::{ClusterClient, ClusterClientError, ClusterClientSettings, ClusterReceptionist};
pub use cluster_singleton::{ClusterSingletonManager, ClusterSingletonProxy, SingletonState};
pub use pub_sub::{ClusterPubSub, DistributedPubSub, MediatorPdu, MediatorTransport};