[][src]Struct splinter::events::Reactor

pub struct Reactor { /* fields omitted */ }

Reactor

Reactor creates a runtime environment for http related futures on start up. Reactors create Igniter object that are used to send futures to the runtime.

Methods

impl Reactor[src]

pub fn new() -> Self[src]

pub fn igniter(&self) -> Igniter[src]

pub fn shutdown_signaler(&self) -> ReactorShutdownSignaler[src]

Return a ReactorShutdownSignaler, used to send a shutdown signal to the reactor's background thread.

pub fn shutdown(self) -> Result<(), ReactorError>[src]

Deprecated since 0.3.12:

Please use the combination of shutdown_signaler and wait_for_shutdown

Signals for shutdown and blocks the current thread until the Reactor's background thread has finished.

pub fn wait_for_shutdown(self) -> Result<(), ReactorError>[src]

Block until for the Reactor thread has shutdown.

Trait Implementations

impl Default for Reactor[src]

Auto Trait Implementations

impl !RefUnwindSafe for Reactor

impl Send for Reactor

impl Sync for Reactor

impl Unpin for Reactor

impl !UnwindSafe for Reactor

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> IntoSql for T

impl<T> SafeBorrow<T> for T where
    T: ?Sized

impl<T> Same<T> for T

type Output = T

Should always be Self

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<V, T> VZip<V> for T where
    V: MultiLane<T>,