Skip to main content

Schedule

Struct Schedule 

Source
pub struct Schedule { /* private fields */ }
Expand description

Stage-based system scheduler.

Systems are grouped into stages. Stages run in the order they were first registered. Within a stage, systems run in registration order.

Systems are parameterized functions that declare their data access via SystemParam.

Implementations§

Source§

impl Schedule

Source

pub fn new() -> Self

Source

pub fn add_system<P>( &mut self, stage: &'static str, name: &'static str, func: impl IntoSystem<P>, ) -> &mut Self

Add a system to a named stage.

Accepts any function that implements IntoSystem — parameterized functions like fn(Res<T>, QueryMut<U>).

Source

pub fn run(&mut self, world: &mut World)

Run all systems in stage order.

Execution order each tick:

  1. Drain deadlines — fires all overdue deadlines into Events current.
  2. Advance event buffers — current → previous (fired deadlines become readable), old previous cleared.
  3. Run systems by stage — EventReader sees fired deadlines + any events from the previous tick. Commands applied between stages.
Source

pub fn system_count(&self) -> usize

Returns the number of registered systems.

Source

pub fn stages(&self) -> &[&'static str]

Returns the stage names in execution order.

Trait Implementations§

Source§

impl Default for Schedule

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.