Skip to content

Commit 5b358a2

Browse files
author
Florian Rieger
committed
Added InteractorStatusGateway.
1 parent eff291c commit 5b358a2

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import Foundation
2+
3+
protocol InteractorStatusGateway {
4+
func isRunning() -> Bool
5+
func setRunning(running: Bool)
6+
}

Xcode/ACInteractor.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10+
17223A171DF9C80000CF7F6F /* InteractorStatusGateway.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17223A161DF9C80000CF7F6F /* InteractorStatusGateway.swift */; };
1011
173A77271D3842A200FF88BA /* ACInteractor.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 173A771C1D3842A200FF88BA /* ACInteractor.framework */; };
1112
173A773B1D3844D400FF88BA /* Interactor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 173A77371D3844D400FF88BA /* Interactor.swift */; };
1213
173A773C1D3844D400FF88BA /* InteractorExecuter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 173A77381D3844D400FF88BA /* InteractorExecuter.swift */; };
@@ -32,6 +33,7 @@
3233
/* End PBXContainerItemProxy section */
3334

3435
/* Begin PBXFileReference section */
36+
17223A161DF9C80000CF7F6F /* InteractorStatusGateway.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = InteractorStatusGateway.swift; sourceTree = "<group>"; };
3537
173A771C1D3842A200FF88BA /* ACInteractor.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = ACInteractor.framework; sourceTree = BUILT_PRODUCTS_DIR; };
3638
173A77261D3842A200FF88BA /* ACInteractorTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ACInteractorTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
3739
173A77371D3844D400FF88BA /* Interactor.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Interactor.swift; sourceTree = "<group>"; };
@@ -95,6 +97,7 @@
9597
173A77381D3844D400FF88BA /* InteractorExecuter.swift */,
9698
17B0BF6F1D3CD057004AA98B /* LazyInteractor.swift */,
9799
1794818E1D57475000CA3590 /* ErrorHandlerExtension.swift */,
100+
17223A161DF9C80000CF7F6F /* InteractorStatusGateway.swift */,
98101
);
99102
name = Sources;
100103
path = ../Sources;
@@ -231,6 +234,7 @@
231234
files = (
232235
173A773B1D3844D400FF88BA /* Interactor.swift in Sources */,
233236
17567E551D3A61C900C464BB /* InteractorError.swift in Sources */,
237+
17223A171DF9C80000CF7F6F /* InteractorStatusGateway.swift in Sources */,
234238
173A773C1D3844D400FF88BA /* InteractorExecuter.swift in Sources */,
235239
173A773D1D3844D400FF88BA /* InteractorRequest.swift in Sources */,
236240
17B0BF701D3CD057004AA98B /* LazyInteractor.swift in Sources */,

0 commit comments

Comments
 (0)