Search code examples
alamofire

Does Alamofire support prioritization?


I want to know if Alamofire supports prioritization of requests. Something similar to URLSessionTask property. Here is a link Apple's documentation


Solution

  • It does not. The prioritization supported by URLSessionTask is just a hint to the server about possible resource priorities, usually used by web browsers. It isn't typically effective or necessary for REST APIs, which is Alamofire's primary use case.