rama-core 0.2.0

rama service core code, used by rama and service authors
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Runtime utilities used by Rama.
//!
//! The Executor is used to spawn futures, from within a service.
//! This is also for example what happens by the built in http
//! client and servers, when serving protocols such as h2 and h3.
//!
//! See the [`Executor`] for more information on how to use it.
//!
//! [`Executor`]: crate::rt::Executor

mod executor;
#[doc(inline)]
pub use executor::Executor;