Skip to content

Instantly share code, notes, and snippets.

@trilliwon
Created September 13, 2020 13:59
Show Gist options
  • Save trilliwon/1f79f9c45ac245ced42b7bd6d68ad5e7 to your computer and use it in GitHub Desktop.
Save trilliwon/1f79f9c45ac245ced42b7bd6d68ad5e7 to your computer and use it in GitHub Desktop.
public extension OperationQueue {
static var serial: OperationQueue {
let queue = OperationQueue()
queue.maxConcurrentOperationCount = 1
return queue
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment