←back to thread

292 points kristoff_it | 1 comments | | HN request time: 0.246s | source
Show context
sedatk ◴[] No.44609850[source]
Blocking async code is not async. In order for something to execute "out of order", you must have an escape mechanism from that task, and that mechanism essentially dictates a form of concurrency. Async must be concurrent, otherwise it stops being async. It becomes synchronous.
replies(3): >>44610133 #>>44610169 #>>44610264 #
1. vitaminCPP ◴[] No.44610133[source]
This is exactly what the article is trying to debunk.