mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-30 23:24:36 +01:00
13 lines
333 B
Rust
13 lines
333 B
Rust
|
//! A runtime implementation that runs everything on the current thread.
|
||
|
|
||
|
mod arbiter;
|
||
|
mod builder;
|
||
|
mod runtime;
|
||
|
mod system;
|
||
|
|
||
|
pub use self::builder::{Builder, SystemRunner};
|
||
|
pub use self::runtime::{Handle, Runtime};
|
||
|
pub use self::system::System;
|
||
|
// pub use tokio_current_thread::spawn;
|
||
|
// pub use tokio_current_thread::TaskExecutor;
|