pub struct TimingWheel<T, R = Milliseconds>where
    R: Resolution,{ /* private fields */ }
Expand description

A hierarchical timing wheel with a given entry type and resolution.

Implementations§

source§

impl<T, R> TimingWheel<T, R>where R: Resolution,

source

pub fn new() -> Self

Create a new timing wheel.

source

pub fn insert(&mut self, entry: T, delay: Duration) -> Option<T>

Returns the entry if it has already expired.

source

pub fn tick(&mut self) -> Vec<T>

Advance the timing wheel and collect all entries that have been expired.

source

pub fn skip(&mut self, amount: u32)

Skip amount steps, note that this will succeed and no checks will take place.

Use TimingWheel::can_skip to determine if this function can be used without silently dropping any entries that have not been expired.

source

pub fn can_skip(&self) -> u32

Returns how many steps can be skipped safely without missing entries.

source

pub fn len(&self) -> usize

Return the amount of entries in the wheel.

source

pub fn is_empty(&self) -> bool

Return whether the wheel is empty.

Trait Implementations§

source§

impl<T, R> Default for TimingWheel<T, R>where R: Resolution,

source§

fn default() -> Self

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

Auto Trait Implementations§

§

impl<T, R> RefUnwindSafe for TimingWheel<T, R>where R: RefUnwindSafe, T: RefUnwindSafe,

§

impl<T, R> Send for TimingWheel<T, R>where R: Send, T: Send,

§

impl<T, R> Sync for TimingWheel<T, R>where R: Sync, T: Sync,

§

impl<T, R> Unpin for TimingWheel<T, R>where R: Unpin, T: Unpin,

§

impl<T, R> UnwindSafe for TimingWheel<T, R>where R: UnwindSafe, T: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere 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, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

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

§

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.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more