Minh Nguyen

Results 2 comments of Minh Nguyen

Yes, the scenario that you described is completely possible. This is especially true for nesting async/wait. The source code use DispatchSemaphore, and call wait(timeout: . distantFuture), which certainly means this...

@yannickl Async/Await can be easily implemented using a single-threaded/non-blocking model at the language level as in the case of Javascript and C#. Whenever an async block is enter, the compiler/interpreter...