This file contains 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
import Foundation | |
import PromiseKit | |
class PromiseOperation<T>: Operation { | |
var result: T? = nil | |
var error: Error? | |
var promise: Promise<T> | |
override var isExecuting: Bool { | |
get {return _isExecuting} |