[][src]Struct specs::AsyncDispatcher

pub struct AsyncDispatcher<'a, R> { /* fields omitted */ }

Like, Dispatcher but works asynchronously.

Methods

impl<'a, R> AsyncDispatcher<'a, R> where
    R: Borrow<World> + Send + Sync + 'static, 
[src]

pub fn setup(&mut self) where
    R: BorrowMut<World>, 
[src]

Sets up all the systems which means they are gonna add default values for the resources they need.

pub fn dispatch(&mut self)[src]

Dispatches the systems asynchronously. Does not execute thread local systems.

If you want to wait for the systems to finish, call wait().

pub fn wait(&mut self)[src]

Waits for all the asynchronously dispatched systems to finish and executes thread local systems (if there are any).

pub fn wait_without_tl(&mut self)[src]

Waits for all the asynchronously dispatched systems to finish without executing thread local systems.

See wait for executing thread local systems.

pub fn running(&mut self) -> bool[src]

Checks if any of the asynchronously dispatched systems are running.

pub fn res(&mut self) -> &R[src]

Deprecated since 0.8.0:

renamed to world

Returns the World.

This will wait for the asynchronous systems to finish.

Renamed to self.world().

pub fn world(&mut self) -> &R[src]

Returns the World.

This will wait for the asynchronous systems to finish.

pub fn mut_res(&mut self) -> &mut R[src]

Deprecated since 0.8.0:

renamed to world_mut

Borrows the World mutably.

This will wait for the asynchronous systems to finish.

Renamed to self.world_mut().

pub fn world_mut(&mut self) -> &mut R[src]

Borrows the World mutably.

This will wait for the asynchronous systems to finish.

Auto Trait Implementations

impl<'a, R> !RefUnwindSafe for AsyncDispatcher<'a, R>

impl<'a, R> !Send for AsyncDispatcher<'a, R>

impl<'a, R> !Sync for AsyncDispatcher<'a, R>

impl<'a, R> Unpin for AsyncDispatcher<'a, R> where
    R: Unpin

impl<'a, R> !UnwindSafe for AsyncDispatcher<'a, R>

Blanket Implementations

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

impl<T> Any for T where
    T: Any

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, 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>,