Using Alamofire I need to make a set of server requests and wait until all of them either succeed or fail and collect the results into a result object.
Is there a proper/provided way to do this in Alamofire?
I could put the each individual result into a queue and wait until the count is = total # of requests (obviously in a separate thread) but that seems a little clunky.