2018-12-10 04:55:40 +01:00
|
|
|
//! A runtime implementation that runs everything on the current thread.
|
|
|
|
|
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
|
|
|
|
2019-03-28 11:56:52 +01:00
|
|
|
#[doc(hidden)]
|
|
|
|
pub use actix_threadpool as blocking;
|
|
|
|
|
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.
|
|
|
|
pub fn spawn<F>(f: F)
|
|
|
|
where
|
2019-11-14 13:38:24 +01:00
|
|
|
F: futures::Future<Output = ()> + 'static,
|
2018-12-10 05:30:04 +01:00
|
|
|
{
|
|
|
|
if !System::is_set() {
|
|
|
|
panic!("System is not running");
|
|
|
|
}
|
|
|
|
|
|
|
|
Arbiter::spawn(f);
|
|
|
|
}
|
2019-11-26 03:12:16 +01:00
|
|
|
|
|
|
|
/// Utilities for tracking time.
|
|
|
|
pub mod time {
|
|
|
|
use std::time::{Duration, Instant};
|
|
|
|
|
|
|
|
pub use tokio_timer::Interval;
|
|
|
|
pub use tokio_timer::{delay, delay_for, Delay};
|
|
|
|
|
|
|
|
/// Creates new `Interval` that yields with interval of `duration`. The first
|
|
|
|
/// tick completes immediately.
|
|
|
|
pub fn interval(duration: Duration) -> Interval {
|
|
|
|
Interval::new(Instant::now(), duration)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates new `Interval` that yields with interval of `period` with the
|
|
|
|
/// first tick completing at `at`.
|
|
|
|
pub fn interval_at(start: Instant, duration: Duration) -> Interval {
|
|
|
|
Interval::new(start, duration)
|
|
|
|
}
|
|
|
|
}
|