Struct Stealer
pub struct Stealer<T> { /* private fields */ }
A stealer handle of a worker queue.
Stealers can be shared among threads.
Task schedulers typically have a single worker queue per worker thread.
Examples
use ;
let w = new_lifo;
w.push;
w.push;
let s = w.stealer;
assert_eq!;
assert_eq!;
assert_eq!;
Implementations
impl<T> Stealer<T>
fn is_empty(&self) -> boolReturns
trueif the queue is empty.use Worker; let w = new_lifo; let s = w.stealer; assert!; w.push; assert!;fn len(&self) -> usizeReturns the number of tasks in the deque.
use Worker; let w = new_lifo; let s = w.stealer; assert_eq!; w.push; assert_eq!; w.push; assert_eq!;fn steal(&self) -> Steal<T>Steals a task from the queue.
Examples
use ; let w = new_lifo; w.push; w.push; let s = w.stealer; assert_eq!; assert_eq!;fn steal_batch(&self, dest: &Worker<T>) -> Steal<()>Steals a batch of tasks and pushes them into another 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 Worker; let w1 = new_fifo; w1.push; w1.push; w1.push; w1.push; let s = w1.stealer; let w2 = new_fifo; let _ = s.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 another 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 Worker; let w1 = new_fifo; w1.push; w1.push; w1.push; w1.push; w1.push; w1.push; let s = w1.stealer; let w2 = new_fifo; let _ = s.steal_batch_with_limit; assert_eq!; assert_eq!; assert_eq!; w1.push; w1.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 _ = s.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 another 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 w1 = new_fifo; w1.push; w1.push; w1.push; w1.push; let s = w1.stealer; let w2 = 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 another 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 w1 = new_fifo; w1.push; w1.push; w1.push; w1.push; w1.push; w1.push; let s = w1.stealer; let w2 = new_fifo; assert_eq!; assert_eq!; assert_eq!; w1.push; w1.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!;
Trait Implementations
impl<T> Clone for Stealer<T>
fn clone(&self) -> Stealer<T>
impl<T> Debug for Stealer<T>
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl<T: Send> Send for Stealer<T>
impl<T: Send> Sync for Stealer<T>
Auto Trait Implementations
impl<T> Freeze for Stealer<T>
where
Arc<CachePadded<Inner<T>>>: Freeze,
impl<T> RefUnwindSafe for Stealer<T>
where
Arc<CachePadded<Inner<T>>>: RefUnwindSafe,
impl<T> Unpin for Stealer<T>
where
Arc<CachePadded<Inner<T>>>: Unpin,
impl<T> UnsafeUnpin for Stealer<T>
where
Arc<CachePadded<Inner<T>>>: UnsafeUnpin,
impl<T> UnwindSafe for Stealer<T>
where
Arc<CachePadded<Inner<T>>>: UnwindSafe,
Blanket Implementations
impl<T> Any for Stealer<T>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for Stealer<T>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for Stealer<T>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> CloneToUninit for Stealer<T>
where
T: Clone,
unsafe fn clone_to_uninit(&self, dest: *mut u8)
impl<T> From<T> for Stealer<T>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> Pointable for Stealer<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> ToOwned for Stealer<T>
where
T: Clone,
type Owned = T;fn to_owned(&self) -> Tfn clone_into(&self, target: &mut T)
impl<T, U> Into<U> for Stealer<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 Stealer<T>
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for Stealer<T>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>