PassthroughFlowRepresentable

public protocol PassthroughFlowRepresentable : FlowRepresentable, _PassthroughIdentifiable where Self.WorkflowInput == AnyWorkflow.PassedArgs, Self.WorkflowOutput == AnyWorkflow.PassedArgs

A FlowRepresentable that automatically captures data from the Workflow and passes it forward.

  • init(with:) Extension method

    Declaration

    Swift

    public init(with args: WorkflowInput)
  • proceedInWorkflow() Extension method

    Moves forward in the Workflow; if at the end, calls the onFinish closure used when launching the workflow.

    Declaration

    Swift

    public func proceedInWorkflow()

Available where Self: StoryboardLoadable

  • init(coder:with:) Extension method

    Declaration

    Swift

    public init?(coder: NSCoder, with args: WorkflowInput)