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
11
//! Role contract API for supervised units.
//!
//! This module owns user-facing role contracts and adapters that bridge those
//! contracts into the existing task factory runtime.

pub mod adapter;
pub mod context;
pub mod lifecycle;
pub mod result;
pub mod templates;
pub mod traits;