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 adapter implementations.
//!
//! Adapters are the only layer that translates role contracts into task factory
//! futures consumed by the runtime.

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