Skip to content

Instantly share code, notes, and snippets.

@olbrichj
Created January 29, 2018 21:28
Show Gist options
  • Save olbrichj/dd08fd31f53a7924caca0f623913900e to your computer and use it in GitHub Desktop.
Save olbrichj/dd08fd31f53a7924caca0f623913900e to your computer and use it in GitHub Desktop.
import Foundation
class TextOperation: AsyncOperation {
let text: String
init(text: String) {
self.text = text
}
override func execute() {
print(text)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment