|
Queueing is slower than sending the requests asynchronously by either
a) attacking a reference to the handler and calling it using function.call(response), or
b) attaching an id to the request and having it send the id back with the response
Both methods allow you to send your requests simultaneously and receive them asap while still able to track which callbacks are being called by which request.
|