mirror of
https://github.com/fafhrd91/actix-net
synced 2025-01-31 07:02:08 +01:00
28 lines
588 B
Rust
28 lines
588 B
Rust
//! A runtime implementation that runs everything on the current thread.
|
|
|
|
mod arbiter;
|
|
mod builder;
|
|
mod runtime;
|
|
mod system;
|
|
|
|
pub use self::arbiter::Arbiter;
|
|
pub use self::builder::{Builder, SystemRunner};
|
|
pub use self::runtime::{Handle, Runtime};
|
|
pub use self::system::System;
|
|
|
|
/// Spawns a future on the current arbiter.
|
|
///
|
|
/// # Panics
|
|
///
|
|
/// This function panics if actix system is not running.
|
|
pub fn spawn<F>(f: F)
|
|
where
|
|
F: futures::Future<Item = (), Error = ()> + 'static,
|
|
{
|
|
if !System::is_set() {
|
|
panic!("System is not running");
|
|
}
|
|
|
|
Arbiter::spawn(f);
|
|
}
|