rust-tokio-supervisor 0.1.4

A Rust tokio supervisor with declarative task supervision, restart policy, shutdown coordination, and observability.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Role-specific context wrappers.
//!
//! Context wrappers expose the narrow capability set each role needs while the
//! runtime keeps owning the complete task context.

pub mod job;
pub mod service;
pub mod sidecar;
pub mod supervisor;
pub mod worker;