qubit_executor/service/mod.rs
1/*******************************************************************************
2 *
3 * Copyright (c) 2025 - 2026 Haixing Hu.
4 *
5 * SPDX-License-Identifier: Apache-2.0
6 *
7 * Licensed under the Apache License, Version 2.0.
8 *
9 ******************************************************************************/
10//! Managed executor service abstractions and basic service implementations.
11//!
12
13mod executor_service;
14mod rejected_execution;
15mod shutdown_report;
16mod thread_per_task_executor_service;
17
18pub use executor_service::ExecutorService;
19pub use rejected_execution::RejectedExecution;
20pub use shutdown_report::ShutdownReport;
21pub use thread_per_task_executor_service::ThreadPerTaskExecutorService;