Hey, Sometimes I use OperationObserver protocol, but I only want to do something in operationDidFinish func. I must also implement the other 3 funcs, too. If I add bellow extension, I can only implement operationDidFinish function only! ``` public extension OperationObserver { func operationDidStart(operation: Operation) { } func operationDidCancel(operation: Operation) { } func operation(operation: Operation, didProduceOperation newOperation: NSOperation) { } func operationDidFinish(operation: Operation, errors: [NSError]) { } } ``` So I think It will make OperationObserver protocol more friendly to use.
Hey,
Sometimes I use OperationObserver protocol, but I only want to do something in operationDidFinish func. I must also implement the other 3 funcs, too.
If I add bellow extension, I can only implement operationDidFinish function only!
So I think It will make OperationObserver protocol more friendly to use.