I have a scenario where calls to backend have to be dispatched in parallel because the calls are independent and dispatching them serially would cost performance.
If I use a single instance of NetConnection to send multiple requests to backend - one after the other without waiting for responses to previous requests to arrive - and there is a NetStatus event once the calls have been dispatched because, for example, the network connection went down, is it possible to find out which of the calls succeeded and which ones failed? Is it safe to assume that if the onResult function of a particular call's responder was not invoked, then that request did not reach the backend? If not, what is the recommended way to implement this? Should a separate instance of NetConnection be used for each call? How expensive would it be? How are multiple NetConnection instances connected to the same endpoint handled under the hood?
Thanks.
North America
Europe, Middle East and Africa
Asia Pacific