pub struct AsyncQueue<ITEM> where
    ITEM: 'static + Send
{ /* private fields */ }
Expand description

AsyncQueue is queue that uses Condvar to signal between two threads.

Implementations

Create new AsyncQueue. limit number of items with max_items

Add items to qeuue and notify waiting wait_for_item calls

if there is items in queue return first item otherwise wait for condvar notification

nulify items and notify waiting wait_for_item calls

return lengs of queue if it is valid.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.