Skip to content

Instantly share code, notes, and snippets.

@janodev
Created September 6, 2012 01:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save janodev/3649261 to your computer and use it in GitHub Desktop.
Save janodev/3649261 to your computer and use it in GitHub Desktop.
- (dispatch_queue_t)internalQueue
{
static dispatch_once_t onceToken;
static dispatch_queue_t *internalQueue;
dispatch_once(&onceToken, ^{
internalQueue = dispatch_queue_create...
});
return internalQueue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment