Skip to content

Instantly share code, notes, and snippets.

@sisoje
Last active February 1, 2019 13:43
Show Gist options
  • Save sisoje/195e698e04ab3491f67c5b60189ededf to your computer and use it in GitHub Desktop.
Save sisoje/195e698e04ab3491f67c5b60189ededf to your computer and use it in GitHub Desktop.
Resource acquisition is initialization (RAII) in Swift: Example
extension URLSessionDataTask {
var cancellation: DeinitBlock {
return DeinitBlock { [weak self] in
self?.cancel()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment