Skip to main content

Waiters

Struct Waiters 

Source
pub struct Waiters { /* private fields */ }
Expand description

Every parked client, oldest first.

The order is the order they blocked in and it is the order they are served in, which is what makes a queue with several workers on it fair: two clients blocked on the same key take the two elements a RPUSH q first second adds in the order they arrived. A Vec is the right structure for that while the list is short, and it is short, because a waiter is a client doing nothing.

Implementations§

Source§

impl Waiters

Source

pub fn is_empty(&self) -> bool

Whether anybody is waiting.

Source

pub fn len(&self) -> usize

How many clients are parked, which is what INFO clients calls blocked_clients.

Source

pub fn mine(&self, thread: usize, into: &mut Vec<Parked>)

Copy out the waiters thread has to answer, oldest first.

The caller works from the copy rather than from the list, because answering a waiter needs a connection’s reply buffer and the list is behind a lock that another thread is waiting on. It brings its own vector, which after the first parked client is a vector it already has the room in.

Trait Implementations§

Source§

impl Default for Waiters

Source§

fn default() -> Waiters

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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 more
Source§

impl<T> MaybeSend for T

Source§

impl<T> MaybeSync for T

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.