Struct constellation::SystemCommandBuffer [] [src]

pub struct SystemCommandBuffer<S: Send + Sync + 'static = ()> { /* fields omitted */ }

Records system executions, to be run later within a World.

Methods

impl SystemCommandBuffer<()>
[src]

Constructs a new 'SystemCommandBuffer' with an empty state.

impl<S: Send + Sync + 'static> SystemCommandBuffer<S>
[src]

Constructs a new SystemCommandBuffer.

Queues a sequence of systems into the command buffer. Each system may potentially be run concurrently.