|
|
|
|
|
by naasking
2462 days ago
|
|
Nested async calls are supported, there's an example at the end of the article. Ordinary calls simply have to return before the next await statement, and obviously you don't want to make blocking calls. Async/await semantically doesn't support resumption from deep in the stack, so it's a good choice for this sort of trick. |
|