CocoaPods trunk is moving to be read-only. Read more on the blog, there are 18 months to go.
TestsTested | ✓ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Feb 2017 |
Maintained by Gleb Novik.
Your service implementation is a cooperation of your core components
COOperation is a component for organizing and structuring the code of your service layer with the help of NSOperation.
Key Features | |
---|---|
Design beautiful and reusable business logic | |
Follow the SOLID principles out of the box | |
Use the Compound Operations concept introduced by Apple at WWDC 2015 (Advanced NSOperations) | |
☑ | Write unit and integration tests easily |
COOperation is written in Objective-C with full Swift interop support. By the way, we are working on a Swift version!
import Foundation
import CompoundOperations
/// Chainable operation that performs network request
class NetworkRequestChainableOperation: ChainableOperationBase {
/// Network client (Core-component)
private let networkClient: NetworkClient
init(networkClient: NetworkClient) {
self.networkClient = networkClient
super.init()
}
// MARK: Executing
override func inputDataClass() -> AnyClass? {
return NSURLRequest.self
}
override func processInputData(inputData: AnyObject?,
completionBlock: ChainableOperationBaseOutputDataBlock) {
let inputRequest = inputData as! NSURLRequest
networkClient.performRequest(inputRequest) { (data, error) in
completionBlock(data, error)
}
}
}
func obtainDataCompoundOperation(withResultBlock resultBlock: CompoundOperationResultBlock?) -> CompoundOperation {
let networkRequestOperation = NetworkRequestChainableOperation(networkClient: NetworkClientImplementation())
let deserializationOperation = DeserializationChainableOperation(deserializer: JSONDeserializer)
let chainableOperations = [
networkRequestOperation,
deserializationOperation
]
let operation = CompoundOperation.defaultCompoundOperation()
operation.configureWithChainableOperations(chainableOperations,
resultBlock: resultBlock)
return operation
}
let compoundOperation = obtainDataCompoundOperation { (data, error) in
// Process the result
}
queue.addOperation(compoundOperation) // OR compoundOperation.start()
MIT
Sergey Simanov - impressive logo design.