saddle-runtime 0.1.0

Saddle managed asynchronous runtime and lifecycle
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Saddle-managed async runtime and application lifecycle.
//!
//! V1 intentionally exposes no general-purpose spawn or runtime-construction
//! API to business code.

mod application;
mod request;

pub use application::Application;
pub use request::{ApplicationPhase, RequestGuard, RequestLifecycle};
pub use saddle_core::{ComponentLifecycle, LifecycleFuture};