Expand description
Remote actor management for ActionQueue v1.0.
This crate provides pure in-memory data structures for managing remote actor registrations, heartbeat monitoring, capability-based routing, and department grouping. No I/O, no tokio, no storage dependencies.
§Components
ActorRegistry— registered actor state with secondary tenant indexHeartbeatMonitor— per-actor heartbeat tracking and timeout detectionCapabilityRouter— stateless capability intersection matchingDepartmentRegistry— actor-to-department grouping with reverse index
Re-exports§
pub use department::DepartmentRegistry;pub use heartbeat::HeartbeatMonitor;pub use registry::ActorRegistry;pub use routing::CapabilityRouter;
Modules§
- department
- Actor-to-department grouping with reverse index.
- heartbeat
- Per-actor heartbeat tracking and timeout detection.
- registry
- In-memory registry of registered remote actors.
- routing
- Capability-based task routing.