Skip to content

Instantly share code, notes, and snippets.

@jwhitehorn
Created January 13, 2018 03:40
Show Gist options
  • Save jwhitehorn/21f246e720f077f0a47339199c4744ce to your computer and use it in GitHub Desktop.
Save jwhitehorn/21f246e720f077f0a47339199c4744ce to your computer and use it in GitHub Desktop.
@interface Sync()
@property (nonatomic) dispatch_queue_t syncQueue;
@end
@implementation Sync
@synthesize syncQueue;
- (id) init {
self = [super init];
if(self){
self.syncQueue = dispatch_queue_create("com.example.sync", DISPATCH_QUEUE_SERIAL);
}
return self;
}
//...
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment