pub struct Sender<T> { /* private fields */ }
mpmc_channel
#126840)Expand description
The sending-half of Rust’s synchronous channel
type.
Messages can be sent through this channel with send
.
Note: all senders (the original and its clones) need to be dropped for the receiver
to stop blocking to receive messages with Receiver::recv
.
§Examples
#![feature(mpmc_channel)]
use std::sync::mpmc::channel;
use std::thread;
let (sender, receiver) = channel();
let sender2 = sender.clone();
// First thread owns sender
thread::spawn(move || {
sender.send(1).unwrap();
});
// Second thread owns sender2
thread::spawn(move || {
sender2.send(2).unwrap();
});
let msg = receiver.recv().unwrap();
let msg2 = receiver.recv().unwrap();
assert_eq!(3, msg + msg2);
Implementations§
Source§impl<T> Sender<T>
impl<T> Sender<T>
Sourcepub fn try_send(&self, msg: T) -> Result<(), TrySendError<T>>
🔬This is a nightly-only experimental API. (mpmc_channel
#126840)
pub fn try_send(&self, msg: T) -> Result<(), TrySendError<T>>
mpmc_channel
#126840)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
Sourcepub fn send(&self, msg: T) -> Result<(), SendError<T>>
🔬This is a nightly-only experimental API. (mpmc_channel
#126840)
pub fn send(&self, msg: T) -> Result<(), SendError<T>>
mpmc_channel
#126840)Attempts to send a value on this channel, returning it back if it could not be sent.
A successful send occurs when it is determined that the other end of
the channel has not hung up already. An unsuccessful send would be one
where the corresponding receiver has already been deallocated. Note
that a return value of Err
means that the data will never be
received, but a return value of Ok
does not mean that the data
will be received. It is possible for the corresponding receiver to
hang up immediately after this function returns Ok
.
This method will never block the current thread.
§Examples
Source§impl<T> Sender<T>
impl<T> Sender<T>
Sourcepub fn send_timeout(
&self,
msg: T,
timeout: Duration,
) -> Result<(), SendTimeoutError<T>>
🔬This is a nightly-only experimental API. (mpmc_channel
#126840)
pub fn send_timeout( &self, msg: T, timeout: Duration, ) -> Result<(), SendTimeoutError<T>>
mpmc_channel
#126840)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
Sourcepub fn send_deadline(
&self,
msg: T,
deadline: Instant,
) -> Result<(), SendTimeoutError<T>>
🔬This is a nightly-only experimental API. (mpmc_channel
#126840)
pub fn send_deadline( &self, msg: T, deadline: Instant, ) -> Result<(), SendTimeoutError<T>>
mpmc_channel
#126840)Waits for a message to be sent into the channel, but only until a given deadline.
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
Sourcepub fn is_empty(&self) -> bool
🔬This is a nightly-only experimental API. (mpmc_channel
#126840)
pub fn is_empty(&self) -> bool
mpmc_channel
#126840)Sourcepub fn is_full(&self) -> bool
🔬This is a nightly-only experimental API. (mpmc_channel
#126840)
pub fn is_full(&self) -> bool
mpmc_channel
#126840)Sourcepub fn len(&self) -> usize
🔬This is a nightly-only experimental API. (mpmc_channel
#126840)
pub fn len(&self) -> usize
mpmc_channel
#126840)Returns the number of messages in the channel.
§Examples
Sourcepub fn capacity(&self) -> Option<usize>
🔬This is a nightly-only experimental API. (mpmc_channel
#126840)
pub fn capacity(&self) -> Option<usize>
mpmc_channel
#126840)If the channel is bounded, returns its capacity.
§Examples
#![feature(mpmc_channel)]
use std::sync::mpmc;
use std::thread;
let (send, _recv) = mpmc::sync_channel(3);
let (tx1, tx2) = (send.clone(), send.clone());
assert_eq!(tx1.capacity(), Some(3));
let handle = thread::spawn(move || {
tx2.send(1u8).unwrap();
});
handle.join().unwrap();
assert_eq!(tx1.capacity(), Some(3));