7 ms·
Yes, that's it. You choose where to pause/resume work and place the calls to `yieldOrContinue` there.
by astoilkov 3y ago
Yes, that's it. You choose where to pause/resume work and place the calls to `yieldOrContinue` there.
- cryptonector 3y agoThe only gotcha is that you have to choose wisely. It's not a bad thing though. This is really cooperative multitasking all over again.
- esprehn 3y agoPretty much, which is how browsers work in general with the single thread (ex. The html parser yields after a certain number of tokens or if user input is waiting). React's concurrent mode is the same thing as well.