2018-12-09 19:55:40 -08:00
|
|
|
//! A runtime implementation that runs everything on the current thread.
|
2019-12-02 22:30:09 +06:00
|
|
|
#![deny(rust_2018_idioms, warnings)]
|
|
|
|
#![allow(clippy::type_complexity)]
|
2018-12-09 19:55:40 -08:00
|
|
|
|
2019-11-26 10:14:21 +06:00
|
|
|
#[cfg(not(test))] // Work around for rust-lang/rust#62127
|
2019-11-25 21:49:11 +06:00
|
|
|
pub use actix_macros::{main, test};
|
|
|
|
|
2018-12-09 19:55:40 -08:00
|
|
|
mod arbiter;
|
|
|
|
mod builder;
|
|
|
|
mod runtime;
|
|
|
|
mod system;
|
|
|
|
|
2018-12-09 20:30:04 -08:00
|
|
|
pub use self::arbiter::Arbiter;
|
2018-12-09 19:55:40 -08:00
|
|
|
pub use self::builder::{Builder, SystemRunner};
|
2019-03-06 10:24:58 -08:00
|
|
|
pub use self::runtime::Runtime;
|
2018-12-09 19:55:40 -08:00
|
|
|
pub use self::system::System;
|
2018-12-09 20:30:04 -08:00
|
|
|
|
2019-03-28 03:56:52 -07:00
|
|
|
#[doc(hidden)]
|
|
|
|
pub use actix_threadpool as blocking;
|
|
|
|
|
2018-12-09 20:30:04 -08:00
|
|
|
/// Spawns a future on the current arbiter.
|
|
|
|
///
|
|
|
|
/// # Panics
|
|
|
|
///
|
|
|
|
/// This function panics if actix system is not running.
|
|
|
|
pub fn spawn<F>(f: F)
|
|
|
|
where
|
2020-02-26 09:15:21 -07:00
|
|
|
F: futures_util::future::Future<Output = ()> + 'static,
|
2018-12-09 20:30:04 -08:00
|
|
|
{
|
|
|
|
if !System::is_set() {
|
|
|
|
panic!("System is not running");
|
|
|
|
}
|
|
|
|
|
|
|
|
Arbiter::spawn(f);
|
|
|
|
}
|
2019-11-26 08:12:16 +06:00
|
|
|
|
2019-12-02 11:30:27 +06:00
|
|
|
/// Asynchronous signal handling
|
|
|
|
pub mod signal {
|
|
|
|
#[cfg(unix)]
|
|
|
|
pub mod unix {
|
2019-12-05 16:40:24 +06:00
|
|
|
pub use tokio::signal::unix::*;
|
2019-12-02 11:30:27 +06:00
|
|
|
}
|
2019-12-05 16:40:24 +06:00
|
|
|
pub use tokio::signal::ctrl_c;
|
2019-12-02 11:30:27 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
/// TCP/UDP/Unix bindings
|
|
|
|
pub mod net {
|
|
|
|
pub use tokio::net::UdpSocket;
|
|
|
|
pub use tokio::net::{TcpListener, TcpStream};
|
|
|
|
|
|
|
|
#[cfg(unix)]
|
|
|
|
mod unix {
|
|
|
|
pub use tokio::net::{UnixDatagram, UnixListener, UnixStream};
|
|
|
|
}
|
|
|
|
|
2019-12-02 21:07:54 -07:00
|
|
|
#[cfg(unix)]
|
2019-12-02 11:30:27 +06:00
|
|
|
pub use self::unix::*;
|
|
|
|
}
|
|
|
|
|
2019-11-26 08:12:16 +06:00
|
|
|
/// Utilities for tracking time.
|
|
|
|
pub mod time {
|
2019-12-05 16:40:24 +06:00
|
|
|
pub use tokio::time::Instant;
|
|
|
|
pub use tokio::time::{delay_for, delay_until, Delay};
|
|
|
|
pub use tokio::time::{interval, interval_at, Interval};
|
|
|
|
pub use tokio::time::{timeout, Timeout};
|
2019-11-26 08:12:16 +06:00
|
|
|
}
|