pub(crate) trait Overflow<T: 'static> {
    // Required methods
    fn push(&self, task: Notified<T>);
    fn push_batch<I>(&self, iter: I)
       where I: Iterator<Item = Notified<T>>;
}

Required Methods§

source

fn push(&self, task: Notified<T>)

source

fn push_batch<I>(&self, iter: I)where I: Iterator<Item = Notified<T>>,

Implementors§