Trait guion::ctx::queue::Queue[][src]

pub trait Queue<I, O> {
    fn push(&mut self, v: I, order: O, prio: i64);
fn send(&self, v: I, order: O, prio: i64); }

The Queue, accessible from E::Context, used to enqueue events or actions from any thread

Invalidations are always done right before rendering
Validations are always done right after rendering

Required methods

fn push(&mut self, v: I, order: O, prio: i64)[src]

fn send(&self, v: I, order: O, prio: i64)[src]

Loading content...

Implementors

Loading content...