pub struct Stealer<T> {
inner: Arc<CachePadded<Inner<T>>>,
flavor: Flavor,
}
Expand description
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 crossbeam_deque::{Steal, Worker};
let w = Worker::new_lifo();
w.push(1);
w.push(2);
let s = w.stealer();
assert_eq!(s.steal(), Steal::Success(1));
assert_eq!(s.steal(), Steal::Success(2));
assert_eq!(s.steal(), Steal::Empty);
Fields§
§inner: Arc<CachePadded<Inner<T>>>
§flavor: Flavor
Implementations§
§impl<T> Stealer<T>
impl<T> Stealer<T>
pub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool
Returns true
if the queue is empty.
use crossbeam_deque::Worker;
let w = Worker::new_lifo();
let s = w.stealer();
assert!(s.is_empty());
w.push(1);
assert!(!s.is_empty());
pub fn len(&self) -> usize
pub fn len(&self) -> usize
Returns the number of tasks in the deque.
use crossbeam_deque::Worker;
let w = Worker::new_lifo();
let s = w.stealer();
assert_eq!(s.len(), 0);
w.push(1);
assert_eq!(s.len(), 1);
w.push(2);
assert_eq!(s.len(), 2);
pub fn steal(&self) -> Steal<T>
pub fn steal(&self) -> Steal<T>
Steals a task from the queue.
§Examples
use crossbeam_deque::{Steal, Worker};
let w = Worker::new_lifo();
w.push(1);
w.push(2);
let s = w.stealer();
assert_eq!(s.steal(), Steal::Success(1));
assert_eq!(s.steal(), Steal::Success(2));
pub fn steal_batch(&self, dest: &Worker<T>) -> Steal<()>
pub 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 crossbeam_deque::Worker;
let w1 = Worker::new_fifo();
w1.push(1);
w1.push(2);
w1.push(3);
w1.push(4);
let s = w1.stealer();
let w2 = Worker::new_fifo();
let _ = s.steal_batch(&w2);
assert_eq!(w2.pop(), Some(1));
assert_eq!(w2.pop(), Some(2));
pub fn steal_batch_with_limit(
&self,
dest: &Worker<T>,
limit: usize
) -> Steal<()>
pub fn steal_batch_with_limit( &self, dest: &Worker<T>, limit: usize ) -> Steal<()>
Steals no more than limit
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 the given limit.
§Examples
use crossbeam_deque::Worker;
let w1 = Worker::new_fifo();
w1.push(1);
w1.push(2);
w1.push(3);
w1.push(4);
w1.push(5);
w1.push(6);
let s = w1.stealer();
let w2 = Worker::new_fifo();
let _ = s.steal_batch_with_limit(&w2, 2);
assert_eq!(w2.pop(), Some(1));
assert_eq!(w2.pop(), Some(2));
assert_eq!(w2.pop(), None);
w1.push(7);
w1.push(8);
// 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(&w2, std::usize::MAX);
assert_eq!(w2.len(), 3);
pub fn steal_batch_and_pop(&self, dest: &Worker<T>) -> Steal<T>
pub 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 crossbeam_deque::{Steal, Worker};
let w1 = Worker::new_fifo();
w1.push(1);
w1.push(2);
w1.push(3);
w1.push(4);
let s = w1.stealer();
let w2 = Worker::new_fifo();
assert_eq!(s.steal_batch_and_pop(&w2), Steal::Success(1));
assert_eq!(w2.pop(), Some(2));
pub fn steal_batch_with_limit_and_pop(
&self,
dest: &Worker<T>,
limit: usize
) -> Steal<T>
pub fn steal_batch_with_limit_and_pop( &self, dest: &Worker<T>, limit: usize ) -> Steal<T>
Steals no more than limit
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 the given limit.
§Examples
use crossbeam_deque::{Steal, Worker};
let w1 = Worker::new_fifo();
w1.push(1);
w1.push(2);
w1.push(3);
w1.push(4);
w1.push(5);
w1.push(6);
let s = w1.stealer();
let w2 = Worker::new_fifo();
assert_eq!(s.steal_batch_with_limit_and_pop(&w2, 2), Steal::Success(1));
assert_eq!(w2.pop(), Some(2));
assert_eq!(w2.pop(), None);
w1.push(7);
w1.push(8);
// 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!(s.steal_batch_with_limit_and_pop(&w2, std::usize::MAX), Steal::Success(3));
assert_eq!(w2.pop(), Some(4));
assert_eq!(w2.pop(), Some(5));
assert_eq!(w2.pop(), None);
Trait Implementations§
impl<T> Send for Stealer<T>where
T: Send,
impl<T> Sync for Stealer<T>where
T: Send,
Auto Trait Implementations§
impl<T> Freeze for Stealer<T>
impl<T> RefUnwindSafe for Stealer<T>where
T: RefUnwindSafe,
impl<T> Unpin for Stealer<T>
impl<T> UnwindSafe for Stealer<T>where
T: RefUnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CheckedAs for T
impl<T> CheckedAs for T
source§fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
source§impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
source§fn checked_cast_from(src: Src) -> Option<Dst>
fn checked_cast_from(src: Src) -> Option<Dst>
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request