Struct yaque::ReceiverBuilder[][src]

pub struct ReceiverBuilder { /* fields omitted */ }
Expand description

A builder for the receiver side of the queue. Use this if you want to have fine-grained control over the configuration of the queue. Most defaults should be ok of most applications.

Implementations

impl ReceiverBuilder[src]

pub fn new() -> ReceiverBuilder[src]

pub fn save_every_nth(self, nth: Option<usize>) -> ReceiverBuilder[src]

Sets the receiver to save its state to the disk at every n-th element. Set it to None to disable this policy.

Default value: every 250 elements.

pub fn save_every(self, duration: Option<Duration>) -> ReceiverBuilder[src]

Sets the receiver to save ir state to the disk at every given interval of time. Set it to None to disable this policy.

Default value: every 350 milliseconds.

Note:

This policy is enforced synchronously. This means that there is no asynchronous behavior involved (i.e. timers). This condidition will only be checked when a new element is pushed to the queue.

pub fn open<P: AsRef<Path>>(self, base: P) -> Result<Receiver>[src]

Opens a queue for reading. The access will be exclusive, based on the existence of the temporary file recv.lock inside the queue folder.

Errors

This function will return an IO error if the queue is already in use for receiving, which is indicated by a lock file. Also, any other IO error encountered while opening will be sent.

Panics

This function will panic if it is not able to set up the notification handler to watch for file changes.

Trait Implementations

impl Default for ReceiverBuilder[src]

fn default() -> ReceiverBuilder[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

Performs the conversion.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

pub fn vzip(self) -> V