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 methodMoves forward in the
Workflow
; if at the end, calls theonFinish
closure used when launching the workflow.Declaration
Swift
public func proceedInWorkflow()
-
init(coder:
Extension methodwith: ) Declaration
Swift
public init?(coder: NSCoder, with args: WorkflowInput)