Skip to main content

qubit_executor/executor/
mod.rs

1/*******************************************************************************
2 *
3 *    Copyright (c) 2025 - 2026.
4 *    Haixing Hu, Qubit Co. Ltd.
5 *
6 *    All rights reserved.
7 *
8 ******************************************************************************/
9//! Execution strategy abstractions and basic executor implementations.
10//!
11//! # Author
12//!
13//! Haixing Hu
14
15mod delay_executor;
16mod direct_executor;
17#[allow(clippy::module_inception)]
18mod executor;
19mod future_executor;
20mod thread_per_task_executor;
21
22pub use delay_executor::DelayExecutor;
23pub use direct_executor::DirectExecutor;
24pub use executor::Executor;
25pub use future_executor::FutureExecutor;
26pub use thread_per_task_executor::ThreadPerTaskExecutor;