├── .gitignore ├── .travis.yml ├── COOperation.podspec ├── Develop └── CompoundOperationsExampleDev │ ├── CompoundOperationsExampleDev.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── CompoundOperationsExampleDev.xcworkspace │ └── contents.xcworkspacedata │ ├── CompoundOperationsExampleDev │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── first.imageset │ │ │ ├── Contents.json │ │ │ └── first.pdf │ │ └── second.imageset │ │ │ ├── Contents.json │ │ │ └── second.pdf │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Classes │ │ ├── Application │ │ │ ├── AppDelegate.h │ │ │ └── AppDelegate.m │ │ ├── Core │ │ │ └── Operations │ │ │ │ ├── DecrementOperation.h │ │ │ │ ├── DecrementOperation.m │ │ │ │ ├── DoublingOperation.h │ │ │ │ ├── DoublingOperation.m │ │ │ │ ├── IncrementOperation.h │ │ │ │ ├── IncrementOperation.m │ │ │ │ ├── LogInputOperation.h │ │ │ │ ├── LogInputOperation.m │ │ │ │ ├── LogStringOperation.h │ │ │ │ └── LogStringOperation.m │ │ └── Presentation │ │ │ ├── FirstViewController.h │ │ │ ├── FirstViewController.m │ │ │ ├── SecondViewController.h │ │ │ └── SecondViewController.m │ └── SupportingFiles │ │ ├── Info.plist │ │ └── main.m │ ├── CompoundOperationsExampleDevTests │ ├── Info.plist │ └── Source │ │ ├── Base │ │ ├── ChainableOperationBaseTests.m │ │ └── CompoundOperationTests.m │ │ ├── Helpers │ │ └── NSOperationQueue+CustomQueueTests.m │ │ ├── Internal │ │ ├── ControlFlowOperationChainerTests.m │ │ ├── DataFlowOperationChainerTests.m │ │ ├── OperationBufferFactoryImplementationTests.m │ │ ├── OperationBufferImplementationTests.m │ │ └── OperationChainConfiguratorImplementationTests.m │ │ ├── Mocks │ │ ├── FailureChainableOperation.h │ │ ├── FailureChainableOperation.m │ │ ├── SleepFailureChainableOperation.h │ │ ├── SleepFailureChainableOperation.m │ │ ├── SuccessChainableOperation.h │ │ └── SuccessChainableOperation.m │ │ └── Operations │ │ └── VectorSpecificOperationTests.m │ ├── Podfile │ ├── Podfile.lock │ └── Pods │ ├── Headers │ ├── Private │ │ ├── OCMock │ │ │ ├── NSInvocation+OCMAdditions.h │ │ │ ├── NSMethodSignature+OCMAdditions.h │ │ │ ├── NSNotificationCenter+OCMAdditions.h │ │ │ ├── NSObject+OCMAdditions.h │ │ │ ├── NSValue+OCMAdditions.h │ │ │ ├── OCClassMockObject.h │ │ │ ├── OCMArg.h │ │ │ ├── OCMArgAction.h │ │ │ ├── OCMBlockArgCaller.h │ │ │ ├── OCMBlockCaller.h │ │ │ ├── OCMBoxedReturnValueProvider.h │ │ │ ├── OCMConstraint.h │ │ │ ├── OCMExceptionReturnValueProvider.h │ │ │ ├── OCMExpectationRecorder.h │ │ │ ├── OCMFunctions.h │ │ │ ├── OCMFunctionsPrivate.h │ │ │ ├── OCMIndirectReturnValueProvider.h │ │ │ ├── OCMInvocationExpectation.h │ │ │ ├── OCMInvocationMatcher.h │ │ │ ├── OCMInvocationStub.h │ │ │ ├── OCMLocation.h │ │ │ ├── OCMMacroState.h │ │ │ ├── OCMNotificationPoster.h │ │ │ ├── OCMObserverRecorder.h │ │ │ ├── OCMPassByRefSetter.h │ │ │ ├── OCMRealObjectForwarder.h │ │ │ ├── OCMRecorder.h │ │ │ ├── OCMReturnValueProvider.h │ │ │ ├── OCMStubRecorder.h │ │ │ ├── OCMVerifier.h │ │ │ ├── OCMock.h │ │ │ ├── OCMockObject.h │ │ │ ├── OCObserverMockObject.h │ │ │ ├── OCPartialMockObject.h │ │ │ └── OCProtocolMockObject.h │ │ └── libextobjc │ │ │ ├── EXTADT.h │ │ │ ├── EXTConcreteProtocol.h │ │ │ ├── EXTKeyPathCoding.h │ │ │ ├── EXTNil.h │ │ │ ├── EXTRuntimeExtensions.h │ │ │ ├── EXTSafeCategory.h │ │ │ ├── EXTScope.h │ │ │ ├── EXTSelectorChecking.h │ │ │ ├── EXTSynthesize.h │ │ │ ├── NSInvocation+EXT.h │ │ │ ├── NSMethodSignature+EXT.h │ │ │ ├── extobjc.h │ │ │ └── metamacros.h │ └── Public │ │ ├── OCMock │ │ ├── NSNotificationCenter+OCMAdditions.h │ │ ├── OCMArg.h │ │ ├── OCMConstraint.h │ │ ├── OCMFunctions.h │ │ ├── OCMLocation.h │ │ ├── OCMMacroState.h │ │ ├── OCMRecorder.h │ │ ├── OCMStubRecorder.h │ │ ├── OCMock.h │ │ └── OCMockObject.h │ │ └── libextobjc │ │ ├── EXTADT.h │ │ ├── EXTConcreteProtocol.h │ │ ├── EXTKeyPathCoding.h │ │ ├── EXTNil.h │ │ ├── EXTRuntimeExtensions.h │ │ ├── EXTSafeCategory.h │ │ ├── EXTScope.h │ │ ├── EXTSelectorChecking.h │ │ ├── EXTSynthesize.h │ │ ├── NSInvocation+EXT.h │ │ ├── NSMethodSignature+EXT.h │ │ ├── extobjc.h │ │ └── metamacros.h │ ├── Manifest.lock │ ├── OCMock │ ├── License.txt │ ├── README.md │ └── Source │ │ └── OCMock │ │ ├── NSInvocation+OCMAdditions.h │ │ ├── NSInvocation+OCMAdditions.m │ │ ├── NSMethodSignature+OCMAdditions.h │ │ ├── NSMethodSignature+OCMAdditions.m │ │ ├── NSNotificationCenter+OCMAdditions.h │ │ ├── NSNotificationCenter+OCMAdditions.m │ │ ├── NSObject+OCMAdditions.h │ │ ├── NSObject+OCMAdditions.m │ │ ├── NSValue+OCMAdditions.h │ │ ├── NSValue+OCMAdditions.m │ │ ├── OCClassMockObject.h │ │ ├── OCClassMockObject.m │ │ ├── OCMArg.h │ │ ├── OCMArg.m │ │ ├── OCMArgAction.h │ │ ├── OCMArgAction.m │ │ ├── OCMBlockArgCaller.h │ │ ├── OCMBlockArgCaller.m │ │ ├── OCMBlockCaller.h │ │ ├── OCMBlockCaller.m │ │ ├── OCMBoxedReturnValueProvider.h │ │ ├── OCMBoxedReturnValueProvider.m │ │ ├── OCMConstraint.h │ │ ├── OCMConstraint.m │ │ ├── OCMExceptionReturnValueProvider.h │ │ ├── OCMExceptionReturnValueProvider.m │ │ ├── OCMExpectationRecorder.h │ │ ├── OCMExpectationRecorder.m │ │ ├── OCMFunctions.h │ │ ├── OCMFunctions.m │ │ ├── OCMFunctionsPrivate.h │ │ ├── OCMIndirectReturnValueProvider.h │ │ ├── OCMIndirectReturnValueProvider.m │ │ ├── OCMInvocationExpectation.h │ │ ├── OCMInvocationExpectation.m │ │ ├── OCMInvocationMatcher.h │ │ ├── OCMInvocationMatcher.m │ │ ├── OCMInvocationStub.h │ │ ├── OCMInvocationStub.m │ │ ├── OCMLocation.h │ │ ├── OCMLocation.m │ │ ├── OCMMacroState.h │ │ ├── OCMMacroState.m │ │ ├── OCMNotificationPoster.h │ │ ├── OCMNotificationPoster.m │ │ ├── OCMObserverRecorder.h │ │ ├── OCMObserverRecorder.m │ │ ├── OCMPassByRefSetter.h │ │ ├── OCMPassByRefSetter.m │ │ ├── OCMRealObjectForwarder.h │ │ ├── OCMRealObjectForwarder.m │ │ ├── OCMRecorder.h │ │ ├── OCMRecorder.m │ │ ├── OCMReturnValueProvider.h │ │ ├── OCMReturnValueProvider.m │ │ ├── OCMStubRecorder.h │ │ ├── OCMStubRecorder.m │ │ ├── OCMVerifier.h │ │ ├── OCMVerifier.m │ │ ├── OCMock.h │ │ ├── OCMockObject.h │ │ ├── OCMockObject.m │ │ ├── OCObserverMockObject.h │ │ ├── OCObserverMockObject.m │ │ ├── OCPartialMockObject.h │ │ ├── OCPartialMockObject.m │ │ ├── OCProtocolMockObject.h │ │ └── OCProtocolMockObject.m │ ├── Pods.xcodeproj │ └── project.pbxproj │ ├── Target Support Files │ ├── OCMock │ │ ├── OCMock-dummy.m │ │ ├── OCMock-prefix.pch │ │ └── OCMock.xcconfig │ ├── Pods-CompoundOperationsExampleDevTests │ │ ├── Pods-CompoundOperationsExampleDevTests-acknowledgements.markdown │ │ ├── Pods-CompoundOperationsExampleDevTests-acknowledgements.plist │ │ ├── Pods-CompoundOperationsExampleDevTests-dummy.m │ │ ├── Pods-CompoundOperationsExampleDevTests-frameworks.sh │ │ ├── Pods-CompoundOperationsExampleDevTests-resources.sh │ │ ├── Pods-CompoundOperationsExampleDevTests.debug.xcconfig │ │ └── Pods-CompoundOperationsExampleDevTests.release.xcconfig │ └── libextobjc │ │ ├── libextobjc-dummy.m │ │ ├── libextobjc-prefix.pch │ │ └── libextobjc.xcconfig │ └── libextobjc │ ├── LICENSE.md │ ├── README.md │ └── extobjc │ ├── EXTADT.h │ ├── EXTADT.m │ ├── EXTConcreteProtocol.h │ ├── EXTConcreteProtocol.m │ ├── EXTKeyPathCoding.h │ ├── EXTNil.h │ ├── EXTNil.m │ ├── EXTRuntimeExtensions.h │ ├── EXTRuntimeExtensions.m │ ├── EXTSafeCategory.h │ ├── EXTSafeCategory.m │ ├── EXTScope.h │ ├── EXTScope.m │ ├── EXTSelectorChecking.h │ ├── EXTSelectorChecking.m │ ├── EXTSynthesize.h │ ├── NSInvocation+EXT.h │ ├── NSInvocation+EXT.m │ ├── NSMethodSignature+EXT.h │ ├── NSMethodSignature+EXT.m │ ├── extobjc.h │ └── metamacros.h ├── LICENSE ├── README.md └── Source ├── Base ├── AsyncOperation │ ├── AsyncOperation.h │ └── AsyncOperation.m ├── ChainableOperationBase │ ├── ChainableOperationBase.h │ └── ChainableOperationBase.m └── CompoundOperation │ ├── CompoundOperation.h │ ├── CompoundOperation.m │ └── Configurator │ ├── OperationChainConfigurator.h │ ├── OperationChainConfiguratorImplementation.h │ └── OperationChainConfiguratorImplementation.m ├── Helpers └── Categories │ └── NSOperationQueue+CustomQueue │ ├── NSOperationQueue+CustomQueue.h │ └── NSOperationQueue+CustomQueue.m ├── Internal ├── OperationBuffer │ ├── Factory │ │ ├── OperationBufferFactory.h │ │ ├── OperationBufferFactoryImplementation.h │ │ └── OperationBufferFactoryImplementation.m │ ├── OperationBuffer.h │ ├── OperationBufferImplementation.h │ └── OperationBufferImplementation.m └── OperationChainer │ ├── ControlFlow │ ├── ControlFlowOperationChainer.h │ └── ControlFlowOperationChainer.m │ ├── DataFlow │ ├── DataFlowOperationChainer.h │ └── DataFlowOperationChainer.m │ ├── Factory │ ├── OperationChainerFactory.h │ ├── OperationChainerFactoryImplementation.h │ └── OperationChainerFactoryImplementation.m │ └── OperationChainer.h ├── Operations └── Specific │ └── VectorSpecific │ ├── VectorSpecificOperation.h │ └── VectorSpecificOperation.m └── Protocols ├── ChainableOperation ├── ChainableOperation.h ├── ChainableOperationDelegate.h ├── ChainableOperationInput.h └── ChainableOperationOutput.h └── CompoundOperation ├── CompoundOperationQueueInput.h └── CompoundOperationQueueOutput.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/.travis.yml -------------------------------------------------------------------------------- /COOperation.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/COOperation.podspec -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Assets.xcassets/first.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Assets.xcassets/first.imageset/Contents.json -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Assets.xcassets/first.imageset/first.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Assets.xcassets/first.imageset/first.pdf -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Assets.xcassets/second.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Assets.xcassets/second.imageset/Contents.json -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Assets.xcassets/second.imageset/second.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Assets.xcassets/second.imageset/second.pdf -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Application/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Application/AppDelegate.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Application/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Application/AppDelegate.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Core/Operations/DecrementOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Core/Operations/DecrementOperation.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Core/Operations/DecrementOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Core/Operations/DecrementOperation.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Core/Operations/DoublingOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Core/Operations/DoublingOperation.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Core/Operations/DoublingOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Core/Operations/DoublingOperation.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Core/Operations/IncrementOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Core/Operations/IncrementOperation.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Core/Operations/IncrementOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Core/Operations/IncrementOperation.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Core/Operations/LogInputOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Core/Operations/LogInputOperation.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Core/Operations/LogInputOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Core/Operations/LogInputOperation.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Core/Operations/LogStringOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Core/Operations/LogStringOperation.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Core/Operations/LogStringOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Core/Operations/LogStringOperation.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Presentation/FirstViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Presentation/FirstViewController.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Presentation/FirstViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Presentation/FirstViewController.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Presentation/SecondViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Presentation/SecondViewController.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Presentation/SecondViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/Classes/Presentation/SecondViewController.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/SupportingFiles/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/SupportingFiles/Info.plist -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/SupportingFiles/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDev/SupportingFiles/main.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Info.plist -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Base/ChainableOperationBaseTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Base/ChainableOperationBaseTests.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Base/CompoundOperationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Base/CompoundOperationTests.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Helpers/NSOperationQueue+CustomQueueTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Helpers/NSOperationQueue+CustomQueueTests.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Internal/ControlFlowOperationChainerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Internal/ControlFlowOperationChainerTests.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Internal/DataFlowOperationChainerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Internal/DataFlowOperationChainerTests.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Internal/OperationBufferFactoryImplementationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Internal/OperationBufferFactoryImplementationTests.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Internal/OperationBufferImplementationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Internal/OperationBufferImplementationTests.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Internal/OperationChainConfiguratorImplementationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Internal/OperationChainConfiguratorImplementationTests.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Mocks/FailureChainableOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Mocks/FailureChainableOperation.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Mocks/FailureChainableOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Mocks/FailureChainableOperation.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Mocks/SleepFailureChainableOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Mocks/SleepFailureChainableOperation.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Mocks/SleepFailureChainableOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Mocks/SleepFailureChainableOperation.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Mocks/SuccessChainableOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Mocks/SuccessChainableOperation.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Mocks/SuccessChainableOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Mocks/SuccessChainableOperation.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Operations/VectorSpecificOperationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/CompoundOperationsExampleDevTests/Source/Operations/VectorSpecificOperationTests.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Podfile -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Podfile.lock -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/NSMethodSignature+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/NSNotificationCenter+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/NSObject+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSObject+OCMAdditions.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/NSValue+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSValue+OCMAdditions.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCClassMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCClassMockObject.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCMArg.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMArg.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCMArgAction.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMArgAction.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCMBlockArgCaller.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMBlockArgCaller.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCMBlockCaller.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMBlockCaller.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCMBoxedReturnValueProvider.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMBoxedReturnValueProvider.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCMConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMConstraint.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCMExceptionReturnValueProvider.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMExceptionReturnValueProvider.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCMExpectationRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMExpectationRecorder.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCMFunctions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMFunctions.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCMFunctionsPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMFunctionsPrivate.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCMIndirectReturnValueProvider.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMIndirectReturnValueProvider.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCMInvocationExpectation.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMInvocationExpectation.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCMInvocationMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMInvocationMatcher.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCMInvocationStub.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMInvocationStub.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCMLocation.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMLocation.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCMMacroState.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMMacroState.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCMNotificationPoster.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMNotificationPoster.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCMObserverRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMObserverRecorder.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCMPassByRefSetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMPassByRefSetter.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCMRealObjectForwarder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMRealObjectForwarder.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCMRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMRecorder.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCMReturnValueProvider.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMReturnValueProvider.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCMStubRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMStubRecorder.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCMVerifier.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMVerifier.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCMock.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMock.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMockObject.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCObserverMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCObserverMockObject.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCPartialMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCPartialMockObject.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/OCMock/OCProtocolMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCProtocolMockObject.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/libextobjc/EXTADT.h: -------------------------------------------------------------------------------- 1 | ../../../libextobjc/extobjc/EXTADT.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/libextobjc/EXTConcreteProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../libextobjc/extobjc/EXTConcreteProtocol.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/libextobjc/EXTKeyPathCoding.h: -------------------------------------------------------------------------------- 1 | ../../../libextobjc/extobjc/EXTKeyPathCoding.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/libextobjc/EXTNil.h: -------------------------------------------------------------------------------- 1 | ../../../libextobjc/extobjc/EXTNil.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/libextobjc/EXTRuntimeExtensions.h: -------------------------------------------------------------------------------- 1 | ../../../libextobjc/extobjc/EXTRuntimeExtensions.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/libextobjc/EXTSafeCategory.h: -------------------------------------------------------------------------------- 1 | ../../../libextobjc/extobjc/EXTSafeCategory.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/libextobjc/EXTScope.h: -------------------------------------------------------------------------------- 1 | ../../../libextobjc/extobjc/EXTScope.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/libextobjc/EXTSelectorChecking.h: -------------------------------------------------------------------------------- 1 | ../../../libextobjc/extobjc/EXTSelectorChecking.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/libextobjc/EXTSynthesize.h: -------------------------------------------------------------------------------- 1 | ../../../libextobjc/extobjc/EXTSynthesize.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/libextobjc/NSInvocation+EXT.h: -------------------------------------------------------------------------------- 1 | ../../../libextobjc/extobjc/NSInvocation+EXT.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/libextobjc/NSMethodSignature+EXT.h: -------------------------------------------------------------------------------- 1 | ../../../libextobjc/extobjc/NSMethodSignature+EXT.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/libextobjc/extobjc.h: -------------------------------------------------------------------------------- 1 | ../../../libextobjc/extobjc/extobjc.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Private/libextobjc/metamacros.h: -------------------------------------------------------------------------------- 1 | ../../../libextobjc/extobjc/metamacros.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Public/OCMock/NSNotificationCenter+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Public/OCMock/OCMArg.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMArg.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Public/OCMock/OCMConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMConstraint.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Public/OCMock/OCMFunctions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMFunctions.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Public/OCMock/OCMLocation.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMLocation.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Public/OCMock/OCMMacroState.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMMacroState.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Public/OCMock/OCMRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMRecorder.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Public/OCMock/OCMStubRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMStubRecorder.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Public/OCMock/OCMock.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMock.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Public/OCMock/OCMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMockObject.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Public/libextobjc/EXTADT.h: -------------------------------------------------------------------------------- 1 | ../../../libextobjc/extobjc/EXTADT.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Public/libextobjc/EXTConcreteProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../libextobjc/extobjc/EXTConcreteProtocol.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Public/libextobjc/EXTKeyPathCoding.h: -------------------------------------------------------------------------------- 1 | ../../../libextobjc/extobjc/EXTKeyPathCoding.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Public/libextobjc/EXTNil.h: -------------------------------------------------------------------------------- 1 | ../../../libextobjc/extobjc/EXTNil.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Public/libextobjc/EXTRuntimeExtensions.h: -------------------------------------------------------------------------------- 1 | ../../../libextobjc/extobjc/EXTRuntimeExtensions.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Public/libextobjc/EXTSafeCategory.h: -------------------------------------------------------------------------------- 1 | ../../../libextobjc/extobjc/EXTSafeCategory.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Public/libextobjc/EXTScope.h: -------------------------------------------------------------------------------- 1 | ../../../libextobjc/extobjc/EXTScope.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Public/libextobjc/EXTSelectorChecking.h: -------------------------------------------------------------------------------- 1 | ../../../libextobjc/extobjc/EXTSelectorChecking.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Public/libextobjc/EXTSynthesize.h: -------------------------------------------------------------------------------- 1 | ../../../libextobjc/extobjc/EXTSynthesize.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Public/libextobjc/NSInvocation+EXT.h: -------------------------------------------------------------------------------- 1 | ../../../libextobjc/extobjc/NSInvocation+EXT.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Public/libextobjc/NSMethodSignature+EXT.h: -------------------------------------------------------------------------------- 1 | ../../../libextobjc/extobjc/NSMethodSignature+EXT.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Public/libextobjc/extobjc.h: -------------------------------------------------------------------------------- 1 | ../../../libextobjc/extobjc/extobjc.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Headers/Public/libextobjc/metamacros.h: -------------------------------------------------------------------------------- 1 | ../../../libextobjc/extobjc/metamacros.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/Manifest.lock -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/License.txt -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/README.md -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/NSInvocation+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/NSInvocation+OCMAdditions.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/NSValue+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/NSValue+OCMAdditions.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/NSValue+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/NSValue+OCMAdditions.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCClassMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCClassMockObject.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCClassMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCClassMockObject.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMArg.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMArg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMArg.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMArgAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMArgAction.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMArgAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMArgAction.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMBlockArgCaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMBlockArgCaller.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMBlockArgCaller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMBlockArgCaller.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMBlockCaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMBlockCaller.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMBlockCaller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMBlockCaller.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMBoxedReturnValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMBoxedReturnValueProvider.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMBoxedReturnValueProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMBoxedReturnValueProvider.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMConstraint.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMConstraint.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMExceptionReturnValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMExceptionReturnValueProvider.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMExceptionReturnValueProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMExceptionReturnValueProvider.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMExpectationRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMExpectationRecorder.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMExpectationRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMExpectationRecorder.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMFunctions.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMFunctions.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMFunctionsPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMFunctionsPrivate.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMIndirectReturnValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMIndirectReturnValueProvider.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMIndirectReturnValueProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMIndirectReturnValueProvider.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMInvocationExpectation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMInvocationExpectation.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMInvocationExpectation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMInvocationExpectation.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMInvocationMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMInvocationMatcher.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMInvocationMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMInvocationMatcher.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMInvocationStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMInvocationStub.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMInvocationStub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMInvocationStub.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMLocation.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMLocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMLocation.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMMacroState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMMacroState.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMMacroState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMMacroState.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMNotificationPoster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMNotificationPoster.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMNotificationPoster.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMNotificationPoster.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMObserverRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMObserverRecorder.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMObserverRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMObserverRecorder.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMPassByRefSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMPassByRefSetter.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMPassByRefSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMPassByRefSetter.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMRecorder.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMRecorder.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMReturnValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMReturnValueProvider.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMReturnValueProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMReturnValueProvider.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMStubRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMStubRecorder.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMStubRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMStubRecorder.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMVerifier.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMVerifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMVerifier.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMock.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMockObject.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCMockObject.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCObserverMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCObserverMockObject.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCObserverMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCObserverMockObject.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCPartialMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCPartialMockObject.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCPartialMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCPartialMockObject.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCProtocolMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCProtocolMockObject.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCProtocolMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/OCMock/Source/OCMock/OCProtocolMockObject.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Target Support Files/OCMock/OCMock-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/Target Support Files/OCMock/OCMock-dummy.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Target Support Files/OCMock/OCMock-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/Target Support Files/OCMock/OCMock-prefix.pch -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Target Support Files/OCMock/OCMock.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/Target Support Files/OCMock/OCMock.xcconfig -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Target Support Files/Pods-CompoundOperationsExampleDevTests/Pods-CompoundOperationsExampleDevTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/Target Support Files/Pods-CompoundOperationsExampleDevTests/Pods-CompoundOperationsExampleDevTests-acknowledgements.markdown -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Target Support Files/Pods-CompoundOperationsExampleDevTests/Pods-CompoundOperationsExampleDevTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/Target Support Files/Pods-CompoundOperationsExampleDevTests/Pods-CompoundOperationsExampleDevTests-acknowledgements.plist -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Target Support Files/Pods-CompoundOperationsExampleDevTests/Pods-CompoundOperationsExampleDevTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/Target Support Files/Pods-CompoundOperationsExampleDevTests/Pods-CompoundOperationsExampleDevTests-dummy.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Target Support Files/Pods-CompoundOperationsExampleDevTests/Pods-CompoundOperationsExampleDevTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/Target Support Files/Pods-CompoundOperationsExampleDevTests/Pods-CompoundOperationsExampleDevTests-frameworks.sh -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Target Support Files/Pods-CompoundOperationsExampleDevTests/Pods-CompoundOperationsExampleDevTests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/Target Support Files/Pods-CompoundOperationsExampleDevTests/Pods-CompoundOperationsExampleDevTests-resources.sh -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Target Support Files/Pods-CompoundOperationsExampleDevTests/Pods-CompoundOperationsExampleDevTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/Target Support Files/Pods-CompoundOperationsExampleDevTests/Pods-CompoundOperationsExampleDevTests.debug.xcconfig -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Target Support Files/Pods-CompoundOperationsExampleDevTests/Pods-CompoundOperationsExampleDevTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/Target Support Files/Pods-CompoundOperationsExampleDevTests/Pods-CompoundOperationsExampleDevTests.release.xcconfig -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Target Support Files/libextobjc/libextobjc-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/Target Support Files/libextobjc/libextobjc-dummy.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Target Support Files/libextobjc/libextobjc-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/Target Support Files/libextobjc/libextobjc-prefix.pch -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/Target Support Files/libextobjc/libextobjc.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/Target Support Files/libextobjc/libextobjc.xcconfig -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/libextobjc/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/libextobjc/LICENSE.md -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/libextobjc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/libextobjc/README.md -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTADT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTADT.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTADT.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTADT.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTConcreteProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTConcreteProtocol.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTConcreteProtocol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTConcreteProtocol.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTKeyPathCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTKeyPathCoding.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTNil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTNil.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTNil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTNil.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTRuntimeExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTRuntimeExtensions.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTRuntimeExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTRuntimeExtensions.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTSafeCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTSafeCategory.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTSafeCategory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTSafeCategory.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTScope.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTScope.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTScope.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTSelectorChecking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTSelectorChecking.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTSelectorChecking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTSelectorChecking.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTSynthesize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/EXTSynthesize.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/NSInvocation+EXT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/NSInvocation+EXT.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/NSInvocation+EXT.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/NSInvocation+EXT.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/NSMethodSignature+EXT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/NSMethodSignature+EXT.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/NSMethodSignature+EXT.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/NSMethodSignature+EXT.m -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/extobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/extobjc.h -------------------------------------------------------------------------------- /Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/metamacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Develop/CompoundOperationsExampleDev/Pods/libextobjc/extobjc/metamacros.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/README.md -------------------------------------------------------------------------------- /Source/Base/AsyncOperation/AsyncOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Base/AsyncOperation/AsyncOperation.h -------------------------------------------------------------------------------- /Source/Base/AsyncOperation/AsyncOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Base/AsyncOperation/AsyncOperation.m -------------------------------------------------------------------------------- /Source/Base/ChainableOperationBase/ChainableOperationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Base/ChainableOperationBase/ChainableOperationBase.h -------------------------------------------------------------------------------- /Source/Base/ChainableOperationBase/ChainableOperationBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Base/ChainableOperationBase/ChainableOperationBase.m -------------------------------------------------------------------------------- /Source/Base/CompoundOperation/CompoundOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Base/CompoundOperation/CompoundOperation.h -------------------------------------------------------------------------------- /Source/Base/CompoundOperation/CompoundOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Base/CompoundOperation/CompoundOperation.m -------------------------------------------------------------------------------- /Source/Base/CompoundOperation/Configurator/OperationChainConfigurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Base/CompoundOperation/Configurator/OperationChainConfigurator.h -------------------------------------------------------------------------------- /Source/Base/CompoundOperation/Configurator/OperationChainConfiguratorImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Base/CompoundOperation/Configurator/OperationChainConfiguratorImplementation.h -------------------------------------------------------------------------------- /Source/Base/CompoundOperation/Configurator/OperationChainConfiguratorImplementation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Base/CompoundOperation/Configurator/OperationChainConfiguratorImplementation.m -------------------------------------------------------------------------------- /Source/Helpers/Categories/NSOperationQueue+CustomQueue/NSOperationQueue+CustomQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Helpers/Categories/NSOperationQueue+CustomQueue/NSOperationQueue+CustomQueue.h -------------------------------------------------------------------------------- /Source/Helpers/Categories/NSOperationQueue+CustomQueue/NSOperationQueue+CustomQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Helpers/Categories/NSOperationQueue+CustomQueue/NSOperationQueue+CustomQueue.m -------------------------------------------------------------------------------- /Source/Internal/OperationBuffer/Factory/OperationBufferFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Internal/OperationBuffer/Factory/OperationBufferFactory.h -------------------------------------------------------------------------------- /Source/Internal/OperationBuffer/Factory/OperationBufferFactoryImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Internal/OperationBuffer/Factory/OperationBufferFactoryImplementation.h -------------------------------------------------------------------------------- /Source/Internal/OperationBuffer/Factory/OperationBufferFactoryImplementation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Internal/OperationBuffer/Factory/OperationBufferFactoryImplementation.m -------------------------------------------------------------------------------- /Source/Internal/OperationBuffer/OperationBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Internal/OperationBuffer/OperationBuffer.h -------------------------------------------------------------------------------- /Source/Internal/OperationBuffer/OperationBufferImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Internal/OperationBuffer/OperationBufferImplementation.h -------------------------------------------------------------------------------- /Source/Internal/OperationBuffer/OperationBufferImplementation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Internal/OperationBuffer/OperationBufferImplementation.m -------------------------------------------------------------------------------- /Source/Internal/OperationChainer/ControlFlow/ControlFlowOperationChainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Internal/OperationChainer/ControlFlow/ControlFlowOperationChainer.h -------------------------------------------------------------------------------- /Source/Internal/OperationChainer/ControlFlow/ControlFlowOperationChainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Internal/OperationChainer/ControlFlow/ControlFlowOperationChainer.m -------------------------------------------------------------------------------- /Source/Internal/OperationChainer/DataFlow/DataFlowOperationChainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Internal/OperationChainer/DataFlow/DataFlowOperationChainer.h -------------------------------------------------------------------------------- /Source/Internal/OperationChainer/DataFlow/DataFlowOperationChainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Internal/OperationChainer/DataFlow/DataFlowOperationChainer.m -------------------------------------------------------------------------------- /Source/Internal/OperationChainer/Factory/OperationChainerFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Internal/OperationChainer/Factory/OperationChainerFactory.h -------------------------------------------------------------------------------- /Source/Internal/OperationChainer/Factory/OperationChainerFactoryImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Internal/OperationChainer/Factory/OperationChainerFactoryImplementation.h -------------------------------------------------------------------------------- /Source/Internal/OperationChainer/Factory/OperationChainerFactoryImplementation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Internal/OperationChainer/Factory/OperationChainerFactoryImplementation.m -------------------------------------------------------------------------------- /Source/Internal/OperationChainer/OperationChainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Internal/OperationChainer/OperationChainer.h -------------------------------------------------------------------------------- /Source/Operations/Specific/VectorSpecific/VectorSpecificOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Operations/Specific/VectorSpecific/VectorSpecificOperation.h -------------------------------------------------------------------------------- /Source/Operations/Specific/VectorSpecific/VectorSpecificOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Operations/Specific/VectorSpecific/VectorSpecificOperation.m -------------------------------------------------------------------------------- /Source/Protocols/ChainableOperation/ChainableOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Protocols/ChainableOperation/ChainableOperation.h -------------------------------------------------------------------------------- /Source/Protocols/ChainableOperation/ChainableOperationDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Protocols/ChainableOperation/ChainableOperationDelegate.h -------------------------------------------------------------------------------- /Source/Protocols/ChainableOperation/ChainableOperationInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Protocols/ChainableOperation/ChainableOperationInput.h -------------------------------------------------------------------------------- /Source/Protocols/ChainableOperation/ChainableOperationOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Protocols/ChainableOperation/ChainableOperationOutput.h -------------------------------------------------------------------------------- /Source/Protocols/CompoundOperation/CompoundOperationQueueInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Protocols/CompoundOperation/CompoundOperationQueueInput.h -------------------------------------------------------------------------------- /Source/Protocols/CompoundOperation/CompoundOperationQueueOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongself/COOperation/HEAD/Source/Protocols/CompoundOperation/CompoundOperationQueueOutput.h --------------------------------------------------------------------------------