ntex-neon 0.2.2

Async runtime for ntex
1
2
3
4
5
6
7
8
9
10
11
//! The async runtime for ntex.

#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
// #![warn(missing_docs)]

pub mod driver;
pub mod pool;
mod rt;

pub use async_task::Task;
pub use rt::{Handle, JoinHandle, Runtime, RuntimeBuilder, spawn, spawn_blocking};