async fn aaa() {
sleep(10秒);
// dosomething
}
async fn process() {
aaa().await;
// dosomething
}
这个 aaa().await 后面是开始跑另一个协程里的aaa函数 ? 还是跑它的调用者 process_socket?
1
共 1 条评论, 1 页
async fn aaa() {
sleep(10秒);
// dosomething
}
async fn process() {
aaa().await;
// dosomething
}
这个 aaa().await 后面是开始跑另一个协程里的aaa函数 ? 还是跑它的调用者 process_socket?
评论区
写评论markdown格式。
await 后就处理其他任务,直到数据来了,再唤醒本任务。