[][src]Struct actix_rt::System

pub struct System { /* fields omitted */ }

System is a runtime manager.

Methods

impl System[src]

pub fn builder() -> Builder[src]

Build a new system with a customized tokio runtime.

This allows to customize the runtime. See struct level docs on Builder for more information.

pub fn new<T: Into<String>>(name: T) -> SystemRunner[src]

Create new system.

This method panics if it can not create tokio runtime

pub fn run_in_tokio<T: Into<String>>(
    name: T,
    local: &LocalSet
) -> impl Future<Output = Result<()>>
[src]

Create new system using provided tokio Handle.

This method panics if it can not spawn system arbiter

pub fn current() -> System[src]

Get current running system.

pub fn is_set() -> bool[src]

Check if current system is set, i.e., as already been started.

pub fn with_current<F, R>(f: F) -> R where
    F: FnOnce(&System) -> R, 
[src]

Execute function with system reference.

pub fn id(&self) -> usize[src]

System id

pub fn stop(&self)[src]

Stop the system

pub fn stop_with_code(&self, code: i32)[src]

Stop the system with a particular exit code.

pub fn stop_on_panic(&self) -> bool[src]

Return status of 'stop_on_panic' option which controls whether the System is stopped when an uncaught panic is thrown from a worker thread.

pub fn arbiter(&self) -> &Arbiter[src]

System arbiter

pub fn run<F>(f: F) -> Result<()> where
    F: FnOnce() + 'static, 
[src]

This function will start tokio runtime and will finish once the System::stop() message get called. Function f get called within tokio runtime context.

Trait Implementations

impl Clone for System[src]

impl Debug for System[src]

Auto Trait Implementations

impl !RefUnwindSafe for System

impl Send for System

impl Sync for System

impl Unpin for System

impl !UnwindSafe for System

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.