Does an asynchronous call always create a new thread? What is the between the two?
EDIT:
Does an asynchronous call always create or use a new thread?
Wikipedia says:
In programming, asynchronous events are those occurring independently of the main program flow. Asynchronous actions are actions executed in a non-blocking scheme, allowing the main program flow to continue processing.
I know async calls can be done on single threads? How is this possible?
