DefaultInteractorAssistant
@MainActor
public struct DefaultInteractorAssistant<InteractorType, Request, ContentType> : InteractorAssisting where InteractorType : InteractorTypeable, Request : InteractorRequestConfiguring, ContentType : ContentTypeable
A default assistant to be used to configure interactor actions. This assistant only passes along the given action type with the request to the interactor.
-
Declaration
Swift
@MainActor public let interactorType: InteractorType
-
Declaration
Swift
@MainActor public var actionType: Request.ActionType
-
Declaration
Swift
@MainActor public var requestMethod: InteractorRequestMethod
-
Undocumented
Declaration
Swift
@MainActor public init(interactorType: InteractorType, actionType: Request.ActionType)
-
Declaration
Swift
@MainActor public func handleRequest<Destination>(destination: Destination, content: ContentType?) where InteractorType == Destination.InteractorType, Destination : Destinationable