Writing a little chat server in async Rust. To see the exercises code as it was when I recorded the video: git clone https://github.com… ...more
Writing a one-shot queue using async Rust, this time with a little less help. To see the exercises code as it was when I recorded the video: git clon… ...more
Writing our own multi-producer-single-consumer (MPSC) queue using async Rust. To see the exercises code as it was when I recorded the video: git clon… ...more
We talked about how Futures have poll methods, but who calls them? That is the job of the runtime. We talk about how to launch your async code and how… ...more
Attempting to explain as slowly as possible what actually happens when the compiler finds an async function containing awaits: it writes a poll method… ...more