Struct specs::AsyncDispatcher [] [src]

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

Like, Dispatcher but works asynchronously.

Methods

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

[src]

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

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

[src]

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

[src]

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

[src]

Checks if any of the asynchronously dispatched systems are running.

[src]

Dispatch only thread local systems sequentially.

If wait_without_tl() or wait() wasn't called before, this method will wait.

[src]

Returns the resources.

If wait_without_tl() or wait() wasn't called before, this method will do that.