[][src]Struct oxygengine_core::ecs::Dispatcher

pub struct Dispatcher<'a, 'b> { /* fields omitted */ }

The dispatcher struct, allowing systems to be executed in parallel.

Methods

impl<'a, 'b> Dispatcher<'a, 'b>[src]

pub fn setup(&mut self, res: &mut Resources)[src]

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

pub fn dispose(self, res: &mut Resources)[src]

Calls the dispose method of all systems and allows them to release external resources. It is common this method removes components and / or resources from the Resources which are associated with external resources.

Calling any method after dispose (including dispose itself) will panic.

pub fn dispatch(&mut self, res: &Resources)[src]

Dispatch all the systems with given resources and context and then run thread local systems.

This function automatically redirects to

and runs dispatch_thread_local afterwards.

Please note that this method assumes that no resource is currently borrowed. If that's the case, it panics.

pub fn dispatch_seq(&mut self, res: &Resources)[src]

Dispatches the systems (except thread local systems) sequentially.

This is useful if parallel overhead is too big or the platform does not support multithreading.

Please note that this method assumes that no resource is currently borrowed. If that's the case, it panics.

pub fn dispatch_thread_local(&mut self, res: &Resources)[src]

Dispatch only thread local systems sequentially.

Please note that this method assumes that no resource is currently borrowed. If that's the case, it panics.

Trait Implementations

impl<'a, 'b, 'c> RunNow<'a> for Dispatcher<'b, 'c>[src]

Auto Trait Implementations

impl<'a, 'b> !RefUnwindSafe for Dispatcher<'a, 'b>

impl<'a, 'b> !Send for Dispatcher<'a, 'b>

impl<'a, 'b> !Sync for Dispatcher<'a, 'b>

impl<'a, 'b> Unpin for Dispatcher<'a, 'b>

impl<'a, 'b> !UnwindSafe for Dispatcher<'a, 'b>

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<'a, T> RunNow<'a> for T where
    T: System<'a>, 
[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>,