qubit-execution-services 0.1.3

Aggregated execution services facade for blocking, CPU-bound, Tokio blocking, and async IO tasks
Documentation
/*******************************************************************************
 *
 *    Copyright (c) 2025 - 2026 Haixing Hu.
 *
 *    SPDX-License-Identifier: Apache-2.0
 *
 *    Licensed under the Apache License, Version 2.0.
 *
 ******************************************************************************/
//! # Qubit Execution Services
//!
//! Aggregated execution services facade for blocking, CPU-bound, Tokio blocking,
//! and async IO tasks.
//!

mod execution_services;
mod execution_services_build_error;
mod execution_services_builder;
mod execution_services_shutdown_report;

pub use execution_services::{
    BlockingExecutorService,
    BlockingExecutorServiceBuilder,
    ExecutionServices,
    TokioBlockingExecutorService,
};
pub use execution_services_build_error::ExecutionServicesBuildError;
pub use execution_services_builder::ExecutionServicesBuilder;
pub use execution_services_shutdown_report::ExecutionServicesShutdownReport;
pub use qubit_executor::TaskHandle;
pub use qubit_executor::service::{
    ExecutorService,
    RejectedExecution,
    ShutdownReport,
};
pub use qubit_rayon_executor::{
    RayonExecutorService,
    RayonExecutorServiceBuildError,
    RayonExecutorServiceBuilder,
    RayonTaskHandle,
};
pub use qubit_thread_pool::{
    ThreadPool,
    ThreadPoolBuildError,
    ThreadPoolBuilder,
};
pub use qubit_tokio_executor::{
    TokioExecutorService,
    TokioIoExecutorService,
    TokioTaskHandle,
};