InteractorConfiguration

public struct InteractorConfiguration<InteractorType, Interactor> : InteractorConfiguring where InteractorType : InteractorTypeable, Interactor : Interactable

This model is used to configure how an interactor is used in a Destination.

  • Declaration

    Swift

    public typealias ActionType = Interactor.Request.ActionType
  • Declaration

    Swift

    public var interactorType: InteractorType
  • Declaration

    Swift

    public var actionType: ActionType
  • The initializer.

    Declaration

    Swift

    public init(interactorType: InteractorType, actionType: ActionType)

    Parameters

    interactorType

    The type of interactor.

    actionType

    The type of interactor request action.