Home > Enterprise >  AFHTTPSessionManager attemptsToRecreateUploadTasksForBackgroundSessions property equivalent in Alamo
AFHTTPSessionManager attemptsToRecreateUploadTasksForBackgroundSessions property equivalent in Alamo

Time:08-19

Previously I used AFNetworking and set attemptsToRecreateUploadTasksForBackgroundSessions to YES for some custom sessions. I'm trying to migrate to Alamofire 5 and I can't find any equivalent of this property. Should I handle it somehow or Alamofire already does it under the hood?

CodePudding user response:

There is no equivalent. Alamofire does not currently support background URLSessions.

  • Related