Jaxx Zhang
Jaxx Zhang
> 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...
> 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....
Hello, I'm here again. > The next thing we need is a `Runtime` to hold all the state our `Runtime` needs. the first `Runtime` here is exactly a struct or...
> However, the part of Node that "progresses" your code does indeed run on a single thread. `progress` here is equal `interpret & compile`. So if there is a blocking...