Skip to content

Instantly share code, notes, and snippets.

@piyush23dez
Created November 30, 2018 04:30
Show Gist options
  • Save piyush23dez/05fdbb477a2e6e74193da566f3000e7f to your computer and use it in GitHub Desktop.
Save piyush23dez/05fdbb477a2e6e74193da566f3000e7f to your computer and use it in GitHub Desktop.
func threadSafeOperation() {
let foo = Foo()
let queue = DispatchQueue(label: "com.apple.serial")
for _ in 0..<4 {
queue.sync {
foo.doIt()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment