InteractorConfiguring
@MainActor
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
-
Undocumented
Declaration
Swift
associatedtype Interactor : AbstractInteractable
-
An enum which defines types of actions for a particular Interactor.
Declaration
Swift
associatedtype ActionType : InteractorRequestActionTypeable
-
The type of interactor.
Declaration
Swift
@MainActor var interactorType: InteractorType { get }
-
The type of interactor request action.
Declaration
Swift
@MainActor var actionType: ActionType { get }
-
The type of interactor assistant associated with the interactor to be configured.
Declaration
Swift
@MainActor var assistantType: InteractorAssistantType { get }
-
Assigns an interactor assistant to a Destination.
Declaration
Swift
@MainActor func assignInteractorAssistant<Destination>(destination: Destination, interactionType: Destination.UserInteractionType) where Destination : Destinationable, Self.InteractorType == Destination.InteractorType
Parameters
destination
The Destination to apply this interactor assistant to.
interactionType
The user interaction type to associate this assistant with.