Вы можете выполнить простую рекурсию, как показано ниже.
func makeRequest(for index: Int) {
guard index < 10000 else { return }
Alamofire.request("https://httpbin.org/get", parameters: ["foo": "bar"]).responseJSON { [weak self] response in
print("Finished request \(index)")
self?.makeRequest(for: index + 1)
}
}
, а затем начать с нуля или любого другого индекса, как показано ниже,
self.makeRequest(for: 0)