AdvancedVocabulary#rust#tokio#async#concurrency#systems

Rust Async Tokio & select!

Tokio is Rust's leading async runtime, powering high-performance networked applications. Master the select! macro, join!, JoinSet, CancellationToken, broadcast channels, and watch channels — the essential vocabulary for concurrent Rust development with Tokio.

0 / 5 completed
1 / 5
A Rust developer uses tokio::select! { val = future_a => {...}, _ = future_b => {...} }. What does select! do with the non-selected future?