mirror of
https://github.com/fafhrd91/actix-net
synced 2025-06-27 06:09:02 +02:00
add actix single threaded runtime
This commit is contained in:
12
actix-rt/src/lib.rs
Normal file
12
actix-rt/src/lib.rs
Normal file
@ -0,0 +1,12 @@
|
||||
//! 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;
|
Reference in New Issue
Block a user