[][src]Struct actix_rt::Arbiter

pub struct Arbiter { /* fields omitted */ }

Arbiters provide an asynchronous execution environment for actors, functions and futures. When an Arbiter is created, they spawn a new OS thread, and host an event loop. Some Arbiter functions execute on the current thread.

Methods

impl Arbiter[src]

pub fn current() -> Arbiter[src]

Returns the current thread's arbiter's address. If no Arbiter is present, then this function will panic!

pub fn stop(&self)[src]

Stop arbiter from continuing it's event loop.

pub fn new() -> Arbiter[src]

Spawn new thread and run event loop in spawned thread. Returns address of newly created arbiter.

pub fn spawn<F>(future: F) where
    F: Future<Output = ()> + 'static, 
[src]

Spawn a future on the current thread. This does not create a new Arbiter or Arbiter address, it is simply a helper for spawning futures on the current thread.

pub fn spawn_fn<F, R>(f: F) where
    F: FnOnce() -> R + 'static,
    R: Future<Output = ()> + 'static, 
[src]

Executes a future on the current thread. This does not create a new Arbiter or Arbiter address, it is simply a helper for executing futures on the current thread.

pub fn send<F>(&self, future: F) where
    F: Future<Output = ()> + Send + Unpin + 'static, 
[src]

Send a future to the Arbiter's thread, and spawn it.

pub fn exec_fn<F>(&self, f: F) where
    F: FnOnce() + Send + 'static, 
[src]

Send a function to the Arbiter's thread, and execute it. Any result from the function is discarded.

pub fn exec<F, R>(&self, f: F) -> impl Future<Output = Result<R, Canceled>> where
    F: FnOnce() -> R + Send + 'static,
    R: Send + 'static, 
[src]

Send a function to the Arbiter's thread. This function will be executed asynchronously. A future is created, and when resolved will contain the result of the function sent to the Arbiters thread.

pub fn set_item<T: 'static>(item: T)[src]

Set item to arbiter storage

pub fn contains_item<T: 'static>() -> bool[src]

Check if arbiter storage contains item

pub fn get_item<T: 'static, F, R>(f: F) -> R where
    F: FnMut(&T) -> R, 
[src]

Get a reference to a type previously inserted on this arbiter's storage.

Panics is item is not inserted

pub fn get_mut_item<T: 'static, F, R>(f: F) -> R where
    F: FnMut(&mut T) -> R, 
[src]

Get a mutable reference to a type previously inserted on this arbiter's storage.

Panics is item is not inserted

pub fn join(&mut self) -> Result<()>[src]

Wait for the event loop to stop by joining the underlying thread (if have Some).

Trait Implementations

impl Clone for Arbiter[src]

impl Default for Arbiter[src]

impl Debug for Arbiter[src]

Auto Trait Implementations

impl Send for Arbiter

impl Sync for Arbiter

impl Unpin for Arbiter

impl !UnwindSafe for Arbiter

impl !RefUnwindSafe for Arbiter

Blanket Implementations

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 = !

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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