■ 블럭문을 사용해 비동기 처리를 하는 방법을 보여준다.
▶ Cargo.toml
1 2 3 4 5 6 7 8 9 |
[package] name = "test_project" version = "0.1.0" edition = "2021" [dependencies] tokio = { version = "1", features = ["full"] } |
▶ src/main.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
use tokio::time; #[tokio::main] async fn main() { for i in 1..=3 { println!("#{} START TO GET MESSAGE", i); let message = async { time::sleep(time::Duration::from_secs(1)).await; return String::from(format!("MESSAGE {}", i)); }.await; println!("{}", message); } } |