I'm really confused about the concept of synchronous execution and asynchronous execution. which type of execution is use in AsiHttprequest and what is the flow work in example?? None of the resources I've read were helpful so far. also explain difference between them
Asked
Active
Viewed 71 times
-2
-
Why give me negative response..????? – user3606984 Jun 20 '14 at 11:22
1 Answers
0
In synchronous
request main thread gets block and control will not get back to user till that request gets execute.
In Asynchronous
control gets back to user even if request is getting execute.
If know more about it please see this link..
Asynchronous Vs. Synchronous Execution, What does it really mean?