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
// A boiler plate operation to be used as a subclass | |
// | |
// Created by Simon Westerlund on 2016-11-07. | |
// Copyright © 2016 Simon Westerlund. All rights reserved. | |
// | |
import Foundation | |
final class BaseOperation: Operation { | |
private var _isFinished = false { | |
willSet { willChangeValue(forKey: "isFinished") } |