1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
use std::sync::atomic::{AtomicBool, Ordering};
/// Init the global executor, spawning as many threads as specified or
/// the value specified by the specified environment variable.
///
/// # Examples
///
/// ```
/// async_global_executor::init_with_config(
/// async_global_executor::GlobalExecutorConfig::default()
/// .with_env_var("NUMBER_OF_THREADS")
/// .with_min_threads(4)
/// .with_max_threads(6)
/// .with_thread_name_fn(Box::new(|| "worker".to_string()))
/// );
/// ```
pub fn init_with_config(config: crate::config::GlobalExecutorConfig) {
let _ = crate::config::GLOBAL_EXECUTOR_CONFIG.set(config.seal());
init();
}
/// Init the global executor, spawning as many threads as the number or cpus or
/// the value specified by the `ASYNC_GLOBAL_EXECUTOR_THREADS` environment variable
/// if specified.
///
/// # Examples
///
/// ```
/// async_global_executor::init();
/// ```
pub fn init() {
static INIT_DONE: AtomicBool = AtomicBool::new(false);
if !INIT_DONE.swap(true, Ordering::SeqCst) {
let config =
crate::config::GLOBAL_EXECUTOR_CONFIG.get_or_init(crate::config::Config::default);
crate::reactor::block_on(async {
crate::threading::spawn_more_threads(config.min_threads)
.await
.expect("cannot spawn executor threads");
});
}
}