Skip to main content

toolkit/runtime/
mod.rs

1mod gear_manager;
2mod grpc_installers;
3mod host_runtime;
4mod runner;
5mod system_context;
6
7/// Shutdown signal handling utilities
8pub mod shutdown;
9
10#[cfg(test)]
11mod tests;
12
13pub use gear_manager::{Endpoint, GearInstance, GearManager, InstanceState};
14pub use grpc_installers::{GearInstallers, GrpcInstallerData, GrpcInstallerStore};
15pub use host_runtime::{
16    DEFAULT_SHUTDOWN_DEADLINE, DbOptions, HostRuntime, TOOLKIT_DIRECTORY_ENDPOINT_ENV,
17    TOOLKIT_MODULE_CONFIG_ENV,
18};
19pub use runner::{
20    ClientRegistration, OopGearSpawnConfig, OopSpawnOptions, RunOptions, ShutdownOptions, run,
21};
22pub use system_context::SystemContext;