Struct Injector
pub struct Injector<T> { /* private fields */ }
An injector queue.
This is a FIFO queue that can be shared among multiple threads. Task schedulers typically have a single injector queue, which is the entry point for new tasks.
Examples
use ;
let q = new;
q.push;
q.push;
assert_eq!;
assert_eq!;
assert_eq!;
Implementations
impl<T> Injector<T>
fn new() -> Injector<T>Creates a new injector queue.
Examples
use Injector; let q = new;fn push(&self, task: T)Pushes a task into the queue.
Examples
use Injector; let w = new; w.push; w.push;fn steal(&self) -> Steal<T>Steals a task from the queue.
Examples
use ; let q = new; q.push; q.push; assert_eq!; assert_eq!; assert_eq!;fn steal_batch(&self, dest: &Worker<T>) -> Steal<()>Steals a batch of tasks and pushes them into a worker.
How many tasks exactly will be stolen is not specified. That said, this method will try to steal around half of the tasks in the queue, but also not more than some constant limit.
Examples
use ; let q = new; q.push; q.push; q.push; q.push; let w = new_fifo; let _ = q.steal_batch; assert_eq!; assert_eq!;fn steal_batch_with_limit(&self, dest: &Worker<T>, limit: usize) -> Steal<()>Steals no more than
limitof tasks and pushes them into a worker.How many tasks exactly will be stolen is not specified. That said, this method will try to steal around half of the tasks in the queue, but also not more than some constant limit.
Examples
use ; let q = new; q.push; q.push; q.push; q.push; q.push; q.push; let w = new_fifo; let _ = q.steal_batch_with_limit; assert_eq!; assert_eq!; assert_eq!; q.push; q.push; // Setting a large limit does not guarantee that all elements will be popped. In this case, // half of the elements are currently popped, but the number of popped elements is considered // an implementation detail that may be changed in the future. let _ = q.steal_batch_with_limit; assert_eq!;fn steal_batch_and_pop(&self, dest: &Worker<T>) -> Steal<T>Steals a batch of tasks, pushes them into a worker, and pops a task from that worker.
How many tasks exactly will be stolen is not specified. That said, this method will try to steal around half of the tasks in the queue, but also not more than some constant limit.
Examples
use ; let q = new; q.push; q.push; q.push; q.push; let w = new_fifo; assert_eq!; assert_eq!;fn steal_batch_with_limit_and_pop(&self, dest: &Worker<T>, limit: usize) -> Steal<T>Steals no more than
limitof tasks, pushes them into a worker, and pops a task from that worker.How many tasks exactly will be stolen is not specified. That said, this method will try to steal around half of the tasks in the queue, but also not more than the given limit.
Examples
use ; let q = new; q.push; q.push; q.push; q.push; q.push; q.push; let w = new_fifo; assert_eq!; assert_eq!; assert_eq!; q.push; // Setting a large limit does not guarantee that all elements will be popped. In this case, // half of the elements are currently popped, but the number of popped elements is considered // an implementation detail that may be changed in the future. assert_eq!; assert_eq!; assert_eq!; assert_eq!;fn is_empty(&self) -> boolReturns
trueif the queue is empty.Examples
use Injector; let q = new; assert!; q.push; assert!;fn len(&self) -> usizeReturns the number of tasks in the queue.
Examples
use Injector; let q = new; assert_eq!; q.push; assert_eq!; q.push; assert_eq!;
Trait Implementations
impl<T> Debug for Injector<T>
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl<T> Default for Injector<T>
fn default() -> Self
impl<T> Drop for Injector<T>
fn drop(&mut self)
impl<T: Send> Send for Injector<T>
impl<T: Send> Sync for Injector<T>
Auto Trait Implementations
impl<T> !Freeze for Injector<T>
impl<T> !UnwindSafe for Injector<T>
impl<T> RefUnwindSafe for Injector<T>
where
CachePadded<Position<T>>: RefUnwindSafe + RefUnwindSafe,
PhantomData<T>: RefUnwindSafe,
impl<T> Unpin for Injector<T>
where
CachePadded<Position<T>>: Unpin + Unpin,
PhantomData<T>: Unpin,
impl<T> UnsafeUnpin for Injector<T>
where
CachePadded<Position<T>>: UnsafeUnpin + UnsafeUnpin,
PhantomData<T>: UnsafeUnpin,
Blanket Implementations
impl<T> Any for Injector<T>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for Injector<T>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for Injector<T>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> From<T> for Injector<T>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> Pointable for Injector<T>
const ALIGN: usize = _;type Init = T;unsafe fn init(init: <T as Pointable>::Init) -> usizeunsafe fn deref<'a>(ptr: usize) -> &'a Tunsafe fn deref_mut<'a>(ptr: usize) -> &'a mut Tunsafe fn drop(ptr: usize)
impl<T, U> Into<U> for Injector<T>
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for Injector<T>
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for Injector<T>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>