Skip to content

Instantly share code, notes, and snippets.

@YogevSitton-zz
Last active April 20, 2017 14:18
Show Gist options
  • Save YogevSitton-zz/718a0f063ec14281fd3cb4ae0212b00a to your computer and use it in GitHub Desktop.
Save YogevSitton-zz/718a0f063ec14281fd3cb4ae0212b00a to your computer and use it in GitHub Desktop.
Custom Dispatch Queues
let customSerialQueue = DispatchQueue(label: "com.yogevsitton.MyApp.myCustomSerialQueue")
customSerialQueue.async {
// Code
}
let customConcurrentQueue = DispatchQueue(label: "com.yogevsitton.MyApp.myCustomConcurrentQueue", attributes: .concurrent)
customConcurrentQueue.async {
// Code
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment