wait for multiple promises

Can anyone give me some direction to wait for multiple promises?
I know that it is still a single threaded operation but I want to be able to http request multiple resources in parallel and goto next line if all are completed.
Thanks in advance.

We'll check with the pas2js team
Some JavaScript background on this is here:

Got this tip from pas2js team:

TJSPromise.all([p1, p2, p3])._then(@ShowResult);

p1,p2,p3 are promises returned from fetch.

This topic was automatically closed 60 minutes after the last reply. New replies are no longer allowed.