Tokio
Tokio๋ ๋ค์์ ์ ๊ณตํฉ๋๋ค.
- ๋น๋๊ธฐ ์ฝ๋ ์คํ์ ์ํ ๋ฉํฐ์ค๋ ๋ ๋ฐํ์
- ํ์ค ๋ผ์ด๋ธ๋ฌ๋ฆฌ์ ๋น๋๊ธฐ ๋ฒ์
- ๋๊ท๋ชจ ๋ผ์ด๋ธ๋ฌ๋ฆฌ ์ํ๊ณ
use tokio::time; async fn count_to(count: i32) { for i in 1..=count { println!("Count in task: {i}!"); time::sleep(time::Duration::from_millis(5)).await; } } #[tokio::main] async fn main() { tokio::spawn(count_to(10)); for i in 1..5 { println!("Main task: {i}"); time::sleep(time::Duration::from_millis(5)).await; } }
-
์ด์
tokio::main
๋งคํฌ๋ก๋ฅผ ์ฌ์ฉํ๋ฉดmain
์ ๋น๋๊ธฐ๋ก ๋ง๋ค ์ ์์ต๋๋ค. -
spawn
ํจ์๋ ๋์ ์คํ๋๋ ์๋ก์ด โ์์ โ์ ๋ง๋ญ๋๋ค. -
์ฐธ๊ณ :
spawn
์Future
๋ฅผ ์ธ์๋ก ๋ฐ์ต๋๋ค. ๋๋ฌธ์count_to
์.await
๋ฅผ ํธ์ถํ์ง ์๋ ์ ์ ์ฃผ๋ชฉํ์ธ์.
์ฌํ ํ์ต:
-
count_to
๊ฐ 10์ ๋๋ฌํ์ง ์๋ ๊ฒฝ์ฐ๊ฐ ๋ง์๋ฐ ๊ทธ ์ด์ ๋ ๋ฌด์์ผ๊น์? ์ด๋ ๋น๋๊ธฐ์ ์ธ ์ทจ์๋ฅผ ๋ณด์ฌ์ฃผ๋ ์์ ๋๋ค.tokio::spawn
์ด ๋ฆฌํดํ๋ ๊ฒ์ ์๋ฃ๋ ๋๊น์ง ๊ธฐ๋ค๋ฆฌ๋๋ก ๋๊ธฐํ๋๋ฐ ์ฌ์ฉ๋๋ ํธ๋ค์ ๋๋ค. -
tokio::spawn
๋์count_to(10).await
๋ฅผ ์ฌ์ฉํด ๋ณด์ธ์. -
tokio::spawn
์์ ๋ฐํ๋ ์์ ์await
ํด ๋ณด์ธ์.