libcosmic-yoda/src/executor/mod.rs

19 lines
465 B
Rust
Raw Normal View History

2023-01-27 03:58:39 +01:00
// Copyright 2023 System76 <info@system76.com>
// SPDX-License-Identifier: MPL-2.0
2023-08-15 10:51:59 +02:00
//! Select the preferred async executor for an application.
2023-01-27 03:58:39 +01:00
#[cfg(feature = "tokio")]
pub mod multi;
#[cfg(feature = "tokio")]
pub mod single;
2023-08-15 10:51:59 +02:00
/// Uses the single thread executor by default.
#[cfg(not(feature = "tokio"))]
pub type Default = iced::executor::Default;
2023-08-15 10:51:59 +02:00
/// Uses the single thread executor by default.
#[cfg(feature = "tokio")]
pub type Default = single::Executor;