Synchronous and Asynchronous
In this post, we will learn about synchronous and asynchronous process.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
In this post, we will learn about synchronous and asynchronous process.
Synchronous Operation
A synchronous operation blocks a process till the operation completes. Synchronous basically means that you can only execute one thing at a time.Asynchronous Operation
An asynchronous operation is non-blocking and only initiates the operation. Asynchronous means that you can execute multiple things at a time and you don't have to finish executing the current thing in order to move on to next one. So asynchronous message passing allows more parallelism.Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Comments
Post a Comment