i have my main UI thread that calls sendAsynchronousRequest method of NSURLConnection to fetch data.
[NSURLConnection sendAsynchronousRequest:[self request]
queue:[NSOperationQueue alloc] init
completionHandler:
^(NSURLResponse *response, NSData *data, NSError *error)
{
if (error)
{
//error handler
}
else
{
//dispatch_asych to main thread to process data.
}
}];
All this is fine and good.
My question here is, I need to implement retry functionality on error.
- Can I do it in this block and call
sendSynchronousRequestto retry as this is the background queue. - Or dispatch to main thread and let the main thread handle retry (by calling
sendAsynchronousRequestand repeating the same cycle).