[−][src]Struct actix_rt::Arbiter
Arbiters provide an asynchronous execution environment for actors, functions and futures. When an Arbiter is created, it spawns a new OS thread, and hosts 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 is_running() -> bool
[src]
Check if current arbiter is running.
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]
F: Future<Output = ()> + 'static,
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]
F: FnOnce() -> R + 'static,
R: Future<Output = ()> + 'static,
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]
F: Future<Output = ()> + Send + Unpin + 'static,
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]
F: FnOnce() + Send + 'static,
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]
F: FnOnce() -> R + Send + 'static,
R: Send + 'static,
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]
F: FnMut(&T) -> R,
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]
F: FnMut(&mut T) -> R,
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).
pub fn local_join() -> impl Future<Output = ()>
[src]
Returns a future that will be completed once all currently spawned futures have completed.
Trait Implementations
impl Clone for Arbiter
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for Arbiter
[src]
impl Default for Arbiter
[src]
Auto Trait Implementations
impl !RefUnwindSafe for Arbiter
impl Send for Arbiter
impl Sync for Arbiter
impl Unpin for Arbiter
impl !UnwindSafe for Arbiter
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,