1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-28 04:12:40 +01:00
actix-net/actix-rt/src/lib.rs

79 lines
1.9 KiB
Rust
Raw Normal View History

2018-12-10 04:55:40 +01:00
//! A runtime implementation that runs everything on the current thread.
2019-12-02 17:30:09 +01:00
#![deny(rust_2018_idioms, warnings)]
#![allow(clippy::type_complexity)]
2018-12-10 04:55:40 +01:00
2019-11-26 05:14:21 +01:00
#[cfg(not(test))] // Work around for rust-lang/rust#62127
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};
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
Migrate actix-net to std::future (#64) * Migrate actix-codec, actix-rt, and actix-threadpool to std::future * update to latest tokio alpha and futures-rs * Migrate actix-service to std::future, This is a squash of ~8 commits, since it included a lot of experimentation. To see the commits, look into the semtexzv/std-future-service-tmp branch. * update futures-rs and tokio * Migrate actix-threadpool to std::future (#59) * Migrate actix-threadpool to std::future * Cosmetic refactor - turn log::error! into log::warn! as it doesn't throw any error - add Clone and Copy impls for Cancelled making it cheap to operate with - apply rustfmt * Bump up crate version to 0.2.0 and pre-fill its changelog * Disable patching 'actix-threadpool' crate in global workspace as unnecessary * Revert patching and fix 'actix-rt' * Migrate actix-rt to std::future (#47) * remove Pin from Service::poll_ready(); simplify combinators api; make code compile * disable tests * update travis config * refactor naming * drop IntoFuture trait * Migrate actix-server to std::future (#50) Still not finished, this is more WIP, this is an aggregation of several commits, which can be found in semtexzv/std-future-server-tmp branch * update actix-server * rename Factor to ServiceFactory * start server worker in start mehtod * update actix-utils * remove IntoTransform trait * Migrate actix-server::ssl::nativetls to std futures (#61) * Refactor 'nativetls' module * Migrate 'actix-server-config' to std futures - remove "uds" feature - disable features by default * Switch NativeTlsAcceptor to use 'tokio-tls' crate * Bikeshed features names and remove unnecessary dependencies for 'actix-server-config' crate * update openssl impl * migrate actix-connect to std::future * migrate actix-ioframe to std::future * update version to alpha.1 * fix boxed service * migrate server rustls support * migratte openssl and rustls connecttors * store the thread's handle with arbiter (#62) * update ssl connect tests * restore service tests * update readme
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
/// Asynchronous signal handling
pub mod signal {
#[cfg(unix)]
pub mod unix {
pub use tokio_net::signal::unix::*;
}
pub use tokio_net::signal::{ctrl_c, CtrlC};
}
/// 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};
}
pub use self::unix::*;
}
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};
2019-11-26 04:04:14 +01:00
pub use tokio_timer::{timeout, Timeout};
2019-11-26 03:12:16 +01:00
/// 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)
}
}