📜  阻塞调用是同步的 - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:42.538000             🧑  作者: Mango

代码示例1
Blocking and Non Blocking Function Calls: Blocking and synchronous mean the same thing: you call the API, it hangs up the thread until it has some kind of answer and returns it to you. Non-blocking means that if an answer can't be returned rapidly, the API returns immediately with an error and does nothing else.