[−][src]Struct crossbeam::channel::Sender
The sending side of a channel.
Examples
use std::thread; use crossbeam_channel::unbounded; let (s1, r) = unbounded(); let s2 = s1.clone(); thread::spawn(move || s1.send(1).unwrap()); thread::spawn(move || s2.send(2).unwrap()); let msg1 = r.recv().unwrap(); let msg2 = r.recv().unwrap(); assert_eq!(msg1 + msg2, 3);
Methods
impl<T> Sender<T>
[src]
impl<T> Sender<T>
pub fn try_send(&self, msg: T) -> Result<(), TrySendError<T>>
[src]
pub fn try_send(&self, msg: T) -> Result<(), TrySendError<T>>
Attempts to send a message into the channel without blocking.
This method will either send a message into the channel immediately or return an error if the channel is full or disconnected. The returned error contains the original message.
If called on a zero-capacity channel, this method will send the message only if there happens to be a receive operation on the other side of the channel at the same time.
Examples
use crossbeam_channel::{bounded, TrySendError}; let (s, r) = bounded(1); assert_eq!(s.try_send(1), Ok(())); assert_eq!(s.try_send(2), Err(TrySendError::Full(2))); drop(r); assert_eq!(s.try_send(3), Err(TrySendError::Disconnected(3)));
pub fn send(&self, msg: T) -> Result<(), SendError<T>>
[src]
pub fn send(&self, msg: T) -> Result<(), SendError<T>>
Blocks the current thread until a message is sent or the channel is disconnected.
If the channel is full and not disconnected, this call will block until the send operation can proceed. If the channel becomes disconnected, this call will wake up and return an error. The returned error contains the original message.
If called on a zero-capacity channel, this method will wait for a receive operation to appear on the other side of the channel.
Examples
use std::thread; use std::time::Duration; use crossbeam_channel::{bounded, SendError}; let (s, r) = bounded(1); assert_eq!(s.send(1), Ok(())); thread::spawn(move || { assert_eq!(r.recv(), Ok(1)); thread::sleep(Duration::from_secs(1)); drop(r); }); assert_eq!(s.send(2), Ok(())); assert_eq!(s.send(3), Err(SendError(3)));
pub fn send_timeout(
&self,
msg: T,
timeout: Duration
) -> Result<(), SendTimeoutError<T>>
[src]
pub fn send_timeout(
&self,
msg: T,
timeout: Duration
) -> Result<(), SendTimeoutError<T>>
Waits for a message to be sent into the channel, but only for a limited time.
If the channel is full and not disconnected, this call will block until the send operation can proceed or the operation times out. If the channel becomes disconnected, this call will wake up and return an error. The returned error contains the original message.
If called on a zero-capacity channel, this method will wait for a receive operation to appear on the other side of the channel.
Examples
use std::thread; use std::time::Duration; use crossbeam_channel::{bounded, SendTimeoutError}; let (s, r) = bounded(0); thread::spawn(move || { thread::sleep(Duration::from_secs(1)); assert_eq!(r.recv(), Ok(2)); drop(r); }); assert_eq!( s.send_timeout(1, Duration::from_millis(500)), Err(SendTimeoutError::Timeout(1)), ); assert_eq!( s.send_timeout(2, Duration::from_secs(1)), Ok(()), ); assert_eq!( s.send_timeout(3, Duration::from_millis(500)), Err(SendTimeoutError::Disconnected(3)), );
pub fn is_empty(&self) -> bool
[src]
pub fn is_empty(&self) -> bool
Returns true
if the channel is empty.
Note: Zero-capacity channels are always empty.
Examples
use crossbeam_channel::unbounded; let (s, r) = unbounded(); assert!(s.is_empty()); s.send(0).unwrap(); assert!(!s.is_empty());
pub fn is_full(&self) -> bool
[src]
pub fn is_full(&self) -> bool
Returns true
if the channel is full.
Note: Zero-capacity channels are always full.
Examples
use crossbeam_channel::bounded; let (s, r) = bounded(1); assert!(!s.is_full()); s.send(0).unwrap(); assert!(s.is_full());
pub fn len(&self) -> usize
[src]
pub fn len(&self) -> usize
Returns the number of messages in the channel.
Examples
use crossbeam_channel::unbounded; let (s, r) = unbounded(); assert_eq!(s.len(), 0); s.send(1).unwrap(); s.send(2).unwrap(); assert_eq!(s.len(), 2);
pub fn capacity(&self) -> Option<usize>
[src]
pub fn capacity(&self) -> Option<usize>
If the channel is bounded, returns its capacity.
Examples
use crossbeam_channel::{bounded, unbounded}; let (s, _) = unbounded::<i32>(); assert_eq!(s.capacity(), None); let (s, _) = bounded::<i32>(5); assert_eq!(s.capacity(), Some(5)); let (s, _) = bounded::<i32>(0); assert_eq!(s.capacity(), Some(0));
Trait Implementations
impl<T> Debug for Sender<T>
[src]
impl<T> Debug for Sender<T>
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl<T> UnwindSafe for Sender<T>
[src]
impl<T> UnwindSafe for Sender<T>
impl<T> Drop for Sender<T>
[src]
impl<T> Drop for Sender<T>
impl<T> Clone for Sender<T>
[src]
impl<T> Clone for Sender<T>
fn clone(&self) -> Sender<T>
[src]
fn clone(&self) -> Sender<T>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl<T> Send for Sender<T> where
T: Send,
[src]
impl<T> Send for Sender<T> where
T: Send,
impl<T> RefUnwindSafe for Sender<T>
[src]
impl<T> RefUnwindSafe for Sender<T>
impl<T> Sync for Sender<T> where
T: Send,
[src]
impl<T> Sync for Sender<T> where
T: Send,
Blanket Implementations
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
type Owned = T
fn to_owned(&self) -> T
[src]
fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)
[src]
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
try_from
)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
ⓘImportant traits for &'a mut Wfn borrow(&self) -> &T
[src]
fn borrow(&self) -> &T
Immutably borrows from an owned value. Read more
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
ⓘImportant traits for &'a mut Wfn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
try_from
)Performs the conversion.
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Gets the TypeId
of self
. Read more
impl<T> Erased for T
[src]
impl<T> Erased for T