/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

petelevasseur.com
| | developerlife.com
4.4 parsecs away

Travel
| | This tutorial, video, and repo are a deep dive into the concept of cancellation safety in async code using Tokio and Rust. It affects the tokio::select! macro, and what happens to the racing Futures that don't win. The examples provided here, along with the video, will go over both code that is is cancellation safe and code that is not. These examples reflect real-world patterns, and are a generalized form of them.
| | async.rs
3.4 parsecs away

Travel
| |
| | tokio.rs
3.3 parsecs away

Travel
| | Tokio is a runtime for writing reliable asynchronous applications with Rust. It provides async I/O, networking, scheduling, timers, and more.
| | jrsinclair.com
20.0 parsecs away

Travel
| You can go a long time as a JavaScript developer without ever feeling the need for generators. Hence, its natural to wonder: What are they good for? Why would you ever need one? Whats the point? But generators can do some neat tricks. And they may even change the way you approach certain problems.