Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm in the process of investigating AFNetworking as a replacement for ASIHTTPRequest, and notice a complete lack of information on whether it supports background downloads/uploads.

With an ASIHTTPReqeust object, all you have to do is call [request setShouldContinueWhenAppEntersBackground:YES] and the request will continue in the background. Is there any support for this in AFNetworking?

share|improve this question
If there isn't (I'm not sure whether there is support for background execution in AFNetworking), you could always port across whatever extra features you want from AFNetworking into ASIHTTPRequest, or add background execution support (relatively simple) to AFNetworking. – darvids0n Oct 17 '11 at 23:09

1 Answer

up vote 25 down vote accepted

EDIT: As of AFNetworking 1.0RC1, this is an explicit feature. AFURLConnectionOperation now has the method setShouldExecuteAsBackgroundTaskWithExpirationHandler:, which transparently manages all of this for you.


It's an implicit feature, so I didn't really think about advertising it. All you'd need to do is:


- (void)applicationWillResignActive:(UIApplication *)application {
    __block UIBackgroundTaskIdentifier backgroundTaskIdentifier = [application beginBackgroundTaskWithExpirationHandler:^(void) {
        [application endBackgroundTask:backgroundTaskIdentifier];
        [[YourRestClient sharedClient] cancelAllHTTPOperations];
    }];
}

Or, if you manage your operations in your own NSOperationQueue, just -cancelAllOperations here instead.

share|improve this answer
Mattt - sounds like you're giving a solution for canceling networking when moving into the background though the question was about spawning/continuing AFNetworking ops when moving into the background. Thoughts on that? Given that most AF methods are block based / return immediately, I've found that the system believes they are complete before they really run their course... Maybe just using waitUntilFinished when running in a background mode? – Hunter Nov 7 '11 at 1:13
3  
@Hunter I think, you understand it wrong. Calling beginBackgroundTaskWithExpirationHandler ensures that requests continue in the background. The requests will not be canceled until the app is inactive for a longer time (like 10 min). – phix23 Nov 18 '11 at 13:45
4  
WARNING: do not use mattt's beginBackgroundTaskWithExpirationHandler code on applicationWillResignActive WITHOUT ADDING a matching call to endBackgroundTask - otherwise IOS will kill your app after 600 seconds, and foregrounding will relaunch your app. – mr_marc Jan 25 '12 at 0:04
1  
- (void)applicationWillResignActive:(UIApplication *)application { UIBackgroundTaskIdentifier backgroundIdentifier = [application beginBackgroundTaskWithExpirationHandler:^(void) { [[AFHTTPClient sharedClient] cancelAllHTTPOperations]; }]; [application endBackgroundTask:backgroundIdentifier]; } – mr_marc Jan 25 '12 at 0:06
3  
@mattt you might want to update your answer to mention the setShouldExecuteAsBackgroundTaskWithExpirationHandler: you've added. I didn't realize it was there in the version I downloaded a couple of weeks ago. – brainjam May 18 '12 at 20:54
show 6 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.