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 trait contracts.
//!
//! Traits are the explicit contract layer that macros target and users can
//! implement directly when they do not want macro-generated code.

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