Why are Asynchronous processes not called Synchronous?

前端 未结 9 2140
我寻月下人不归
我寻月下人不归 2020-12-28 14:46

So I\'m a little confused by this terminology.

Everyone refers to \"Asynchronous\" computing as running different processes on seperate threads, which gives the illu

9条回答
  •  庸人自扰
    2020-12-28 15:21

    Your second definition is more helpful here:

    2. [...] having each operation started only after the preceding operation is completed.
    

    When you make an asynchronous call, that call might not be completed before the next operation is started. When the call is synchronous, it will be.

提交回复
热议问题