cosmic/executor/mod.rs
1// Copyright 2023 System76 <info@system76.com>
2// SPDX-License-Identifier: MPL-2.0
3
4//! Select the preferred async executor for an application.
5
6#[cfg(feature = "tokio")]
7pub mod multi;
8
9#[cfg(feature = "tokio")]
10pub mod single;
11
12/// Uses the single thread executor by default.
13#[cfg(not(feature = "tokio"))]
14pub type Default = iced::executor::Default;
15
16/// Uses the single thread executor by default.
17#[cfg(feature = "tokio")]
18pub type Default = single::Executor;