- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的Tokio MPSC队列有限,只有一个发送者和一个接收者。我在一个任务中放入了几项(在本例中为1到10,包括1和10),然后在另一项任务中将这些项拉出。如预期的那样,接收器处理所有10个值。
然后,我在处理之间添加了一些其他异步任务(在这种情况下,通过在接收循环中取消注释sleep
调用),现在,最后一个发送者完成时, channel 的内容将被丢弃。
use tokio::sync::mpsc;
use tokio::time::sleep;
use std::time::Duration;
#[tokio::main]
async fn main() {
let (mut tx, mut rx) = mpsc::channel(3);
tokio::spawn(async move {
while let Some(val) = rx.recv().await {
println!("Recieved {}", val);
//sleep(Duration::from_secs(1)).await;
}
println!("Recieve finished");
});
for i in 1..=10i32 {
tx.send(i).await.unwrap();
println!("Sent {}", i);
}
}
Rust Playground
sleep
的输出(交错值的顺序有时会更改,但始终会打印“已接收10”):
Sent 1
Recieved 1
Recieved 2
Sent 2
Sent 3
Recieved 3
Recieved 4
Sent 4
Sent 5
Recieved 5
Recieved 6
Sent 6
Sent 7
Recieved 7
Recieved 8
Sent 8
Sent 9
Recieved 9
Recieved 10
Sent 10
这是未注释
sleep
的输出:
Sent 1
Sent 2
Sent 3
Recieved 1
Sent 4
Recieved 2
Sent 5
Recieved 3
Sent 6
Recieved 4
Sent 7
Recieved 5
Sent 8
Recieved 6
Sent 9
Recieved 7
Sent 10
是否有任何方法可以确定即使删除了最后一个
Reciever
后(假设没有删除
Sender
),
Reciever
也处理了放入队列中的所有值?
close
函数似乎可以做到这一点,但是却是另一种方式(确保在删除
Reciever
之前已处理了队列内容)。如果没有,是否存在可以提供此保证的备用异步友好MPSC实现?
最佳答案
如注释中所述,问题是您的程序在接收器线程完成之前退出。只需确保退出之前先等待即可:
use tokio::sync::mpsc;
use tokio::time::sleep;
use std::time::Duration;
#[tokio::main]
async fn main() {
let (mut tx, mut rx) = mpsc::channel(3);
let join_handle = tokio::spawn(async move {
while let Some(val) = rx.recv().await {
println!("Received {}", val);
//sleep(Duration::from_secs(1)).await;
}
println!("Receive finished");
});
for i in 1..=10i32 {
tx.send(i).await.unwrap();
println!("Sent {}", i);
}
std::mem::drop(tx); // Drop the sender so the receiver doesn't listen forever
join_handle.await.unwrap(); // Wait for the receiver to finish processing
}
Sent 1
Received 1
Received 2
Sent 2
Sent 3
Sent 4
Sent 5
Received 3
Received 4
Received 5
Sent 6
Sent 7
Sent 8
Received 6
Received 7
Received 8
Sent 9
Sent 10
Received 9
Received 10
Receive finished
关于rust - 丢弃最后一个发件人但收信人仍处于事件状态时,是否可以在Tokio MPSC中保留项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65501193/
我正在尝试实现一个基于数组的环形缓冲区,它对多个生产者和单个消费者是线程安全的。主要思想是拥有原子头和尾索引。将元素插入队列时,头部会自动增加以在缓冲区中保留一个槽: #include #inclu
代码如下: use std::thread; use std::sync::mpsc; fn main() { //spawn threads let (tx, rx) = mpsc:
我有一个循环,我在其中做一些工作,并使用Sender发送结果。工作需要时间,如果失败,我需要重试。重试时,接收器可能已关闭,重试可能会浪费时间。因此,我需要一种无需发送消息即可检查Receiver是否
在我的代码片段中,tokio (v0.3) mpsc:channel接收器仅在缓冲区已满时接收消息。缓冲区的大小无关紧要。 use std::io; use std::net::{SocketAddr
我有一个包含 std::sync::mpsc::Receiver 的集合并希望根据其中的消息将它们分类到其他集合中。 我正在迭代接收器,测试它们是否收到消息,如果是,我测试消息的性质,并根据它,我将接
我想生成 n 个线程,它们能够与环形拓扑中的其他线程进行通信,例如线程 0 可以向线程 1 发送消息,线程 1 向线程 2 发送消息,以此类推,线程 n 向线程 0 发送消息。 这是我想用 n=3 实
我有一个闭包,它使用 std::sync::mpsc 中的 Sender: let node = Arc::new(Mutex::new(node_sender)); let switch_callb
我正在尝试创建一个异步 Rust 客户端,它在一端连接到 WebSocket 服务器,在另一端连接到蓝牙加密狗。在这两者之间会有一些过滤消息的逻辑。 我正在使用 rust-websocket用于 We
我正在尝试连续读取 Receiver在指定的持续时间内。我想出了以下解决方案 pub fn get( rx: &Receiver, get_duration: time::Durati
impl A { fn new() -> (A, std::sync::mpsc::Receiver) { let (sender, receiver) = std::sync
我认为 channel 的全部目的是在线程之间共享数据。我有这个代码,based on this example : let tx_thread = tx.clone(); let ctx = sel
我正在尝试处理 TcpStream在 Rust 程序(一个 tcp 服务器)中使用线程。我想在 HashMap 中跟踪当前客户端连接使用 Arc> . 当一个线程完成时,要从 HashMap 中删除连
我正在用 Rust 编写一个小游戏来学习多线程。我得到的代码包含两个循环,一个是逻辑循环,一个是渲染循环,如下所示: let (t1_entity_in, t1_entity_out) = mpsc:
无论我运行程序多少次,它总是以相同的顺序显示数字: use std::sync::mpsc::channel; use std::thread; fn main() { let (tx, rx
我想用 sdl2-rs crate 启动一个计时器来执行绘制调用。我想通过做这样的事情来开始它: extern crate sdl2; use std::sync::mpsc; enum Event
我有一个应用程序可以在回调中从队列中提取项目。回调在一个单独的线程中,所以我不能直接在回调中执行任何操作。队列中的项目包括一个 URL 和一个要 POST 到 URL 的消息体。根据响应,我从队列中删
我有这样一种情况,我正在设置具有多个发送器的 channel ,这些发送器需要能够将不同类型的数据发送到接收线程。 使用以下匹配表达式创建一个接收线程来处理这些消息。 let receiver_thr
我有一个 futures::sync::mpsc::Sender 的动态集合,我想为每个传入连接发送一条消息。 我让它与 UnboundedSender 一起工作,因为我只能这样做(见下文)但是 Se
我正在阅读 futures-preview 0.3 源代码以了解如何正确地“通知任何”。在 mpsc::channel(有界)中,多个发送者可能会等待接收(在缓冲区已满的情况下)。 研究 next_m
我有一个 futures::sync::mpsc::unbounded channel 。我可以发送消息到 UnboundedSender但从 UnboundedReciever 接收它们时遇到问题.
我是一名优秀的程序员,十分优秀!