Click here to Skip to main content
15,896,915 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello there

Can any one please explain what is asynchronous & synchronous call with example ?

Thanks in Advance.
Regards:
Ramesh
Posted

very simple.
normally you begin with synchronous calls. This means I start a task and wait for the completion of the task.
When going async you have a begin and an end method for a task. You start the begintask and that task can call the endtask as soon as it is finished. While that task runs (in a separate thread) other tasks can be done.

see: http://msdn.microsoft.com/en-us/library/aa480516.aspx[^]
 
Share this answer
 
Hi,
Below link will help you to understand
asynchronous & synchronous call

Thanks
Faisal
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900