[][src]Struct actix::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>(name: T) -> SystemRunner where
    T: Into<String>, 
[src]

Create new system.

This method panics if it can not create tokio runtime

pub fn current() -> System[src]

Get current running system.

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<(), Error> 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]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for System[src]

Auto Trait Implementations

impl Send for System

impl Sync for System

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.

impl<T> Erased for T