[][src]Struct multiqueue2::MPMCSender

pub struct MPMCSender<T> { /* fields omitted */ }

This class is the sending half of the mpmc MultiQueue. It supports both single and multi consumer modes with competitive performance in each case. It only supports nonblocking writes (the futures sender being an exception) as well as being the conduit for adding new writers.

Examples

use std::thread;

let (send, recv) = multiqueue2::mpmc_queue(4);

let mut handles = vec![];

for i in 0..2 { // or n
    let consumer = recv.clone();
    handles.push(thread::spawn(move || {
        for val in consumer {
            println!("Consumer {} got {}", i, val);
        }
    }));
}

// Take notice that I drop the reader - this removes it from
// the queue, meaning that the readers in the new threads
// won't get starved by the lack of progress from recv
recv.unsubscribe();

for i in 0..10 {
    // Don't do this busy loop in real stuff unless you're really sure
    loop {
        if send.try_send(i).is_ok() {
            break;
        }
    }
}
drop(send);

for t in handles {
    t.join();
}
// prints along the lines of
// Consumer 1 got 2
// Consumer 0 got 0
// Consumer 0 got 1
// etc

Methods

impl<T> MPMCSender<T>[src]

pub fn try_send(&self, val: T) -> Result<(), TrySendError<T>>[src]

Tries to send a value into the queue If there is no space, returns Err(TrySendError::Full(val)) If there are no readers, returns Err(TrySendError::Disconnected(val))

pub fn unsubscribe(self)[src]

Removes this writer from the queue

Trait Implementations

impl<T: Send> Send for MPMCSender<T>[src]

impl<T: Clone> Clone for MPMCSender<T>[src]

Auto Trait Implementations

impl<T> Unpin for MPMCSender<T>

impl<T> !Sync for MPMCSender<T>

impl<T> !UnwindSafe for MPMCSender<T>

impl<T> !RefUnwindSafe for MPMCSender<T>

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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.

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

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

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