Skip to content

Instantly share code, notes, and snippets.

@olbrichj
Created December 19, 2017 14:43
Show Gist options
  • Save olbrichj/f67fb9f5472151ee90995e0feeb2be40 to your computer and use it in GitHub Desktop.
Save olbrichj/f67fb9f5472151ee90995e0feeb2be40 to your computer and use it in GitHub Desktop.
class CustomOperation: Operation {
override func main() {
guard isCancelled == false else {
finish(true)
return
}
// Do something
finish(true)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment