Add a mechanism to handle multiple requests in parallel, allowing the RequestManager to manage multiple API calls simultaneously. Use Promise.all() or similar methods to execute requests in parallel and process the results once all requests are completed.
Add a mechanism to handle multiple requests in parallel, allowing the
RequestManagerto manage multiple API calls simultaneously. UsePromise.all()or similar methods to execute requests in parallel and process the results once all requests are completed.