Created
September 6, 2012 01:02
-
-
Save janodev/3649261 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (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