[][src]Struct tokio::reactor::Background

pub struct Background { /* fields omitted */ }

Handle to the reactor running on a background thread.

Instances are created by calling Reactor::background.

Methods

impl Background[src]

pub fn handle(&self) -> &Handle[src]

Returns a reference to the reactor handle.

pub fn shutdown_on_idle(self) -> Shutdown[src]

Shutdown the reactor on idle.

Returns a future that completes once the reactor thread has shutdown.

pub fn shutdown_now(self) -> Shutdown[src]

Shutdown the reactor immediately

Returns a future that completes once the reactor thread has shutdown.

pub fn forget(self)[src]

Run the reactor on its thread until the process terminates.

Trait Implementations

impl Drop for Background[src]

impl Debug for Background[src]

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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

impl<T> Erased for T