Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Alternatives to dispatch_get_current_queue() for completion blocks in iOS 6?

I have a method that accepts a block and a completion block. The first block should run in the background, while the completion block should run in whatever queue the method was called.

For the latter I always used dispatch_get_current_queue(), but it seems like it's deprecated in iOS 6 or higher. What should I use instead?

like image 287
cfischer Avatar asked Nov 05 '12 17:11

cfischer


1 Answers

The pattern of "run on whatever queue the caller was on" is appealing, but ultimately not a great idea. That queue could be a low priority queue, the main queue, or some other queue with odd properties.

My favorite approach to this is to say "the completion block runs on an implementation defined queue with these properties: x, y, z", and let the block dispatch to a particular queue if the caller wants more control than that. A typical set of properties to specify would be something like "serial, non-reentrant, and async with respect to any other application-visible queue".

** EDIT **

Catfish_Man put an example in the comments below, I'm just adding it to his answer.

- (void) aMethodWithCompletionBlock:(dispatch_block_t)completionHandler      {      dispatch_async(self.workQueue, ^{          [self doSomeWork];          dispatch_async(self.callbackQueue, completionHandler);      }  } 
like image 181
Catfish_Man Avatar answered Oct 02 '22 07:10

Catfish_Man