book-exploring-async-basics icon indicating copy to clipboard operation
book-exploring-async-basics copied to clipboard

The repository for the book "The Node Experiment - Exploring Async Basics with Rust"

Results 19 book-exploring-async-basics issues
Sort by recently updated
recently updated
newest added

> Even though we use several threads, we use a regular `usize` here What does the word `regular` here mean? Can I regard it as `simple`? > We do the...

`One area we're taking shortcuts on all the way here is security. ` It means that security is what have been ignored in the previous chapters. `There are several ways...

`Lastly we clean up after ourselves by joining all our threads ...` so what we need to clean up is just waiting the threads finished? Actually it is `after ourselves`...

`most often the file I/O will be `Ready` almost immediately, so waiting for that in a event queue has very little effect in practice.` I guess you mean waiting in...

Can `Shortcut` be regarded as `tip` or `note` sometimes?

`You can iterate over the range but due to the ownership rules you can't remove them at the same time, and we want to remove the timers, we've run.` the...

> I find it easier to write about this if we don't need to jump between functions too much and can just cover all this logic from a-z. This sentence...

Hi, I have a question about this chapter. Is The character 'c' further down case sensitive? I mean is there any difference with 'c' between 'C'? > extern "C" or...

> Worth noting here is that timers with a timeout of `0` will already have timed out by the time we reach this function so their events will be processed....