InterviewSolution
Saved Bookmarks
| 1. |
What Is Synchronous Vs. Asynchronous In Gcd? |
|
Answer» A synchronous function returns only after the completion of a task that it ORDERS. An ASYNCHRONOUS function, on the other HAND, returns immediately, ORDERING the task to be DONE, but not waiting for it. A synchronous function returns only after the completion of a task that it orders. An asynchronous function, on the other hand, returns immediately, ordering the task to be done, but not waiting for it. |
|