Struct two_lock_queue::Receiver [] [src]

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

The receiving-half of the channel.

Methods

impl<T> Receiver<T>
[src]

[src]

Attempts to wait for a value on this receiver, returning an error if the corresponding channel has hung up.

This function will always block the current thread if there is no data available and it's possible for more data to be sent. Once a message is sent to the corresponding Sender, then this receiver will wake up and return that message.

If the corresponding Sender has disconnected, or it disconnects while this call is blocking, this call will wake up and return Err to indicate that no more messages can ever be received on this channel. However, since channels are buffered, messages sent before the disconnect will still be properly received.

[src]

Attempts to wait for a value on this receiver, returning an error if the corresponding channel has hung up, or if it waits more than timeout.

This function will always block the current thread if there is no data available and it's possible for more data to be sent. Once a message is sent to the corresponding Sender, then this receiver will wake up and return that message.

If the corresponding Sender has disconnected, or it disconnects while this call is blocking, this call will wake up and return Err to indicate that no more messages can ever be received on this channel. However, since channels are buffered, messages sent before the disconnect will still be properly received.

[src]

Attempts to return a pending value on this receiver without blocking

This method will never block the caller in order to wait for data to become available. Instead, this will always return immediately with a possible option of pending data on the channel.

This is useful for a flavor of "optimistic check" before deciding to block on a receiver.

[src]

Returns the number of values currently buffered by the channel

[src]

Fully close the channel

This will force close the channel even if there are outstanding Sender and Receiver handles. Further operations on any outstanding handle will result in a disconnected error.

[src]

Returns true if the channel is currently in an open state

[src]

Returns the capacity of the queue

use two_lock_queue::{channel, unbounded};

let (_, rx) = channel(1024);
assert_eq!(rx.capacity(), 1024);

let (_, rx) = unbounded();
assert_eq!(rx.capacity(), usize::MAX);

Trait Implementations

impl<T> Clone for Receiver<T>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T> Drop for Receiver<T>
[src]

[src]

Executes the destructor for this type. Read more