I am working in ASP.Net 4.0 MVC project, where i am calling different APIs in Different threads at a same time. I am using Task.Factory.StartNew() for this purpose which has event .ContinueWith(), will run on completion of each threads.
My Query is how will i populate data coming at different times (as APIs are taking different time), in View (Guess it has some ajax involved). Currently I am waiting for all the thread to complete and then at last populating all the result at the end.
Need some Guidance to proceed to save some time.