Skip to main content

qubit_executor/service/
mod.rs

1/*******************************************************************************
2 *
3 *    Copyright (c) 2025 - 2026.
4 *    Haixing Hu, Qubit Co. Ltd.
5 *
6 *    All rights reserved.
7 *
8 ******************************************************************************/
9//! Managed executor service abstractions and basic service implementations.
10//!
11//! # Author
12//!
13//! Haixing Hu
14
15mod executor_service;
16mod rejected_execution;
17mod shutdown_report;
18mod thread_per_task_executor_service;
19
20pub use executor_service::ExecutorService;
21pub use rejected_execution::RejectedExecution;
22pub use shutdown_report::ShutdownReport;
23pub use thread_per_task_executor_service::ThreadPerTaskExecutorService;