Skip to content

Instantly share code, notes, and snippets.

@piyushdec
Last active July 28, 2019 19:24
Show Gist options
  • Select an option

  • Save piyushdec/30c0887c84800eb63885e3699a02be06 to your computer and use it in GitHub Desktop.

Select an option

Save piyushdec/30c0887c84800eb63885e3699a02be06 to your computer and use it in GitHub Desktop.
class PendingOperations {
lazy var downloadsInProgress: [IndexPath: Operation] = [:]
lazy var downloadQueue: OperationQueue = {
var queue = OperationQueue()
queue.name = "Download queue"
queue.maxConcurrentOperationCount = 1
return queue
}()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment