InteractorConfiguring
public protocol InteractorConfiguring<InteractorType>
This protocol represents a model which configures how an interactor is used with a Destination.
-
An enum which defines types of Interactors. Each Destination may have its own Interactor types.
Declaration
Swift
associatedtype InteractorType : InteractorTypeable
-
An enum which defines types of actions for a particular Interactor.
Declaration
Swift
associatedtype ActionType : InteractorRequestActionTypeable
-
The type of interactor.
Declaration
Swift
var interactorType: InteractorType { get set }
-
The type of interactor request action.
Declaration
Swift
var actionType: ActionType { get set }