Created
December 19, 2017 14:43
-
-
Save olbrichj/f67fb9f5472151ee90995e0feeb2be40 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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