Skip to main content

BiteQueue

Struct BiteQueue 

Source
pub struct BiteQueue<T> { /* private fields */ }
Expand description

A FIFO queue that lends transactional batches.

Implementations§

Source§

impl<T> BiteQueue<T>

Source

pub const fn new() -> Self

Creates an empty queue.

Source

pub fn with_capacity(capacity: usize) -> Self

Creates an empty queue with space for at least capacity items.

Source

pub fn push(&mut self, item: T)

Adds an item at the back.

Source

pub fn front(&self) -> Option<&T>

Returns the next item without removing it.

Source

pub fn len(&self) -> usize

Returns the number of queued items.

Source

pub fn is_empty(&self) -> bool

Returns whether the queue contains no items.

Source

pub fn iter(&self) -> impl ExactSizeIterator<Item = &T> + DoubleEndedIterator

Iterates in FIFO order without removing items.

Examples found in repository?
examples/worker.rs (line 14)
3fn main() -> Result<(), Box<dyn std::error::Error>> {
4    let mut queue = BiteQueue::from_iter(["task-1", "task-2", "task-3"]);
5
6    let completed = queue.bite(2)?.commit();
7    println!("completed: {completed:?}");
8
9    {
10        let retry = queue.bite(1)?;
11        println!("will retry: {:?}", retry.front());
12    }
13
14    println!("remaining: {:?}", queue.iter().collect::<Vec<_>>());
15    Ok(())
16}
Source

pub fn bite(&mut self, maximum: usize) -> Result<Bite<'_, T>, BiteError>

Takes up to maximum items as a transactional bite.

Dropping the returned bite without committing it restores the items.

Examples found in repository?
examples/worker.rs (line 6)
3fn main() -> Result<(), Box<dyn std::error::Error>> {
4    let mut queue = BiteQueue::from_iter(["task-1", "task-2", "task-3"]);
5
6    let completed = queue.bite(2)?.commit();
7    println!("completed: {completed:?}");
8
9    {
10        let retry = queue.bite(1)?;
11        println!("will retry: {:?}", retry.front());
12    }
13
14    println!("remaining: {:?}", queue.iter().collect::<Vec<_>>());
15    Ok(())
16}
Source

pub fn bite_exact(&mut self, amount: usize) -> Result<Bite<'_, T>, BiteError>

Takes exactly amount items or leaves the queue unchanged.

Source

pub fn into_inner(self) -> VecDeque<T>

Consumes the wrapper and returns the underlying FIFO storage.

Trait Implementations§

Source§

impl<T: Clone> Clone for BiteQueue<T>

Source§

fn clone(&self) -> BiteQueue<T>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T: Debug> Debug for BiteQueue<T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T: Default> Default for BiteQueue<T>

Source§

fn default() -> BiteQueue<T>

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

impl<T: Eq> Eq for BiteQueue<T>

Source§

impl<T> Extend<T> for BiteQueue<T>

Source§

fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I)

Extends a collection with the contents of an iterator. Read more
Source§

fn extend_one(&mut self, item: T)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
Source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
Source§

impl<T> FromIterator<T> for BiteQueue<T>

Source§

fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self

Creates a value from an iterator. Read more
Source§

impl<T> IntoIterator for BiteQueue<T>

Source§

type Item = T

The type of the elements being iterated over.
Source§

type IntoIter = IntoIter<T>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
Source§

impl<'a, T> IntoIterator for &'a BiteQueue<T>

Source§

type Item = &'a T

The type of the elements being iterated over.
Source§

type IntoIter = Iter<'a, T>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
Source§

impl<T: PartialEq> PartialEq for BiteQueue<T>

Source§

fn eq(&self, other: &BiteQueue<T>) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl<T: PartialEq> StructuralPartialEq for BiteQueue<T>

Auto Trait Implementations§

§

impl<T> Freeze for BiteQueue<T>
where VecDeque<T>: Freeze,

§

impl<T> RefUnwindSafe for BiteQueue<T>

§

impl<T> Send for BiteQueue<T>
where VecDeque<T>: Send,

§

impl<T> Sync for BiteQueue<T>
where VecDeque<T>: Sync,

§

impl<T> Unpin for BiteQueue<T>
where VecDeque<T>: Unpin,

§

impl<T> UnsafeUnpin for BiteQueue<T>

§

impl<T> UnwindSafe for BiteQueue<T>
where VecDeque<T>: UnwindSafe,

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.