本文简要介绍rust语言中 std::sync::mpsc::SyncSender.send
的用法。
用法
pub fn send(&self, t: T) -> Result<(), SendError<T>>
在此同步通道上发送一个值。
此函数将阻塞,直到内部缓冲区中的空间变得可用或接收者可以将消息传递给。
请注意,成功发送不会不是保证如果该通道上有缓冲区,接收方将看到数据。项目可以在内部缓冲区中排队,以便接收者稍后接收。然而,如果缓冲区大小为 0,则该通道将成为汇聚通道,并且如果该函数返回成功,则可以保证接收者确实已收到数据。
此函数永远不会Panics,但如果 Receiver
已断开连接并且不再能够接收信息,它可能会返回 Err
。
例子
use std::sync::mpsc::sync_channel;
use std::thread;
// Create a rendezvous sync_channel with buffer size 0
let (sync_sender, receiver) = sync_channel(0);
thread::spawn(move || {
println!("sending message...");
sync_sender.send(1).unwrap();
// Thread is now blocked until the message is received
println!("...message received!");
});
let msg = receiver.recv().unwrap();
assert_eq!(1, msg);
相关用法
- Rust SyncSender.try_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.send。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。