scirs2-core 0.4.3

Core utilities and common functionality for SciRS2 (scirs2-core)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Cluster management for distributed computing
//!
//! This module provides comprehensive cluster management capabilities
//! including node discovery, health monitoring, resource allocation,
//! and fault-tolerant cluster coordination.
//!
//! The implementation has been modularized into separate components
//! for better maintainability and code organization.

// Re-export everything from the cluster module
pub use self::cluster::*;

// Include the modularized cluster implementation
pub mod cluster;