本文简要介绍rust语言中 std::sync::mpsc::SyncSender.try_send
的用法。
用法
pub fn try_send(&self, t: T) -> Result<(), TrySendError<T>>
尝试在此通道上发送值而不阻塞。
此方法与 send
的不同之处在于,如果通道的缓冲区已满或没有接收器正在等待获取某些数据,则立即返回。与 send
相比,此函数有两种失败情况而不是一种(一种用于断开连接,一种用于缓冲区满)。
如果此函数成功,请参阅 send
以获取有关保证接收器是否已接收数据的说明。
例子
use std::sync::mpsc::sync_channel;
use std::thread;
// Create a sync_channel with buffer size 1
let (sync_sender, receiver) = sync_channel(1);
let sync_sender2 = sync_sender.clone();
// First thread owns sync_sender
thread::spawn(move || {
sync_sender.send(1).unwrap();
sync_sender.send(2).unwrap();
// Thread blocked
});
// Second thread owns sync_sender2
thread::spawn(move || {
// This will return an error and send
// no message if the buffer is full
let _ = sync_sender2.try_send(3);
});
let mut msg;
msg = receiver.recv().unwrap();
println!("message {} received", msg);
msg = receiver.recv().unwrap();
println!("message {} received", msg);
// Third message may have never been sent
match receiver.try_recv() {
Ok(msg) => println!("message {} received", msg),
Err(_) => println!("the third message was never sent"),
}
相关用法
- Rust SyncSender.send用法及代码示例
- Rust SyncSender用法及代码示例
- Rust SyncOnceCell用法及代码示例
- Rust SyncLazy用法及代码示例
- Rust SyncOnceCell.get_or_try_init用法及代码示例
- Rust SyncOnceCell.get_or_init用法及代码示例
- Rust SyncOnceCell.set用法及代码示例
- Rust SyncOnceCell.take用法及代码示例
- Rust SyncOnceCell.into_inner用法及代码示例
- Rust SyncLazy.force用法及代码示例
- Rust SystemTime.elapsed用法及代码示例
- Rust SystemTimeError.duration用法及代码示例
- Rust SystemTimeError用法及代码示例
- Rust SymmetricDifference用法及代码示例
- Rust System用法及代码示例
- Rust SystemTime.now用法及代码示例
- Rust SystemTime用法及代码示例
- Rust SystemTime.duration_since用法及代码示例
- Rust String.try_reserve用法及代码示例
- Rust Saturating.reverse_bits用法及代码示例
- Rust Seek.stream_len用法及代码示例
- Rust SplitNMut用法及代码示例
- Rust SocketAddrV6.ip用法及代码示例
- Rust Shl.shl用法及代码示例
- Rust SubAssign.sub_assign用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 std::sync::mpsc::SyncSender.try_send。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。