TerminatingAction
public protocol TerminatingAction : Action
An action that performs no work except successfully completing with feature termination.
Actions adopting this protocol will not need to provide a perform
implementation.
Conforming to this protocol is useful for done
type Actions that you want to participate
in standard Action patterns, but do not actually perform any code.
-
perform(context:presenter:completion:)
Extension methodDeclaration
Swift
public static func perform(context: ActionContext<InputType>, presenter: PresenterType, completion: Completion) -> Completion.Status