2020-12-28 02:58:31 +01:00
|
|
|
//! Tokio-based single-thread async runtime for the Actix ecosystem.
|
|
|
|
|
2020-12-13 00:24:00 +01:00
|
|
|
#![deny(rust_2018_idioms, nonstandard_style)]
|
2019-12-02 17:30:09 +01:00
|
|
|
#![allow(clippy::type_complexity)]
|
2020-12-13 00:24:00 +01:00
|
|
|
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
|
|
|
|
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]
|
2018-12-10 04:55:40 +01:00
|
|
|
|
2020-12-27 00:26:02 +01:00
|
|
|
use std::future::Future;
|
|
|
|
|
2021-01-09 16:12:59 +01:00
|
|
|
// Cannot define a main macro when compiled into test harness.
|
|
|
|
// Workaround for https://github.com/rust-lang/rust/issues/62127.
|
|
|
|
#[cfg(all(feature = "macros", not(test)))]
|
2019-11-25 16:49:11 +01:00
|
|
|
pub use actix_macros::{main, test};
|
|
|
|
|
2018-12-10 04:55:40 +01:00
|
|
|
mod arbiter;
|
|
|
|
mod builder;
|
|
|
|
mod runtime;
|
|
|
|
mod system;
|
|
|
|
|
2018-12-10 05:30:04 +01:00
|
|
|
pub use self::arbiter::Arbiter;
|
2018-12-10 04:55:40 +01:00
|
|
|
pub use self::builder::{Builder, SystemRunner};
|
2019-03-06 19:24:58 +01:00
|
|
|
pub use self::runtime::Runtime;
|
2018-12-10 04:55:40 +01:00
|
|
|
pub use self::system::System;
|
2018-12-10 05:30:04 +01:00
|
|
|
|
|
|
|
/// Spawns a future on the current arbiter.
|
|
|
|
///
|
|
|
|
/// # Panics
|
|
|
|
///
|
|
|
|
/// This function panics if actix system is not running.
|
2020-12-27 00:26:02 +01:00
|
|
|
#[inline]
|
2018-12-10 05:30:04 +01:00
|
|
|
pub fn spawn<F>(f: F)
|
|
|
|
where
|
2020-12-27 00:26:02 +01:00
|
|
|
F: Future<Output = ()> + 'static,
|
2018-12-10 05:30:04 +01:00
|
|
|
{
|
2020-12-27 00:26:02 +01:00
|
|
|
Arbiter::spawn(f)
|
2018-12-10 05:30:04 +01:00
|
|
|
}
|
2019-11-26 03:12:16 +01:00
|
|
|
|
2019-12-02 06:30:27 +01:00
|
|
|
/// Asynchronous signal handling
|
|
|
|
pub mod signal {
|
|
|
|
#[cfg(unix)]
|
|
|
|
pub mod unix {
|
2019-12-05 11:40:24 +01:00
|
|
|
pub use tokio::signal::unix::*;
|
2019-12-02 06:30:27 +01:00
|
|
|
}
|
2019-12-05 11:40:24 +01:00
|
|
|
pub use tokio::signal::ctrl_c;
|
2019-12-02 06:30:27 +01: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-03 05:07:54 +01:00
|
|
|
#[cfg(unix)]
|
2019-12-02 06:30:27 +01:00
|
|
|
pub use self::unix::*;
|
|
|
|
}
|
|
|
|
|
2019-11-26 03:12:16 +01:00
|
|
|
/// Utilities for tracking time.
|
|
|
|
pub mod time {
|
2019-12-05 11:40:24 +01:00
|
|
|
pub use tokio::time::Instant;
|
|
|
|
pub use tokio::time::{interval, interval_at, Interval};
|
2020-12-28 02:40:22 +01:00
|
|
|
pub use tokio::time::{sleep, sleep_until, Sleep};
|
2019-12-05 11:40:24 +01:00
|
|
|
pub use tokio::time::{timeout, Timeout};
|
2019-11-26 03:12:16 +01:00
|
|
|
}
|
2021-01-03 19:16:57 +01:00
|
|
|
|
2021-01-09 16:12:59 +01:00
|
|
|
/// Blocking task management.
|
2021-01-03 19:16:57 +01:00
|
|
|
pub mod task {
|
|
|
|
pub use tokio::task::{spawn_blocking, yield_now, JoinHandle};
|
|
|
|
}
|