Does an asynchronous call always create/call a new thread?
- by Ted Smith
Does asynchronous call always create a new thread?
Example:
If Javascript is single threaded then how can it do an async postback? Is it actually blocking until it gets a callback? If so, is this really an async call?