FlowContributor
public enum FlowContributor
A FlowContributor describes the next thing that will contribute to a Flow.
- contribute: the given stepper will emit steps (according to lifecycle of the given presentable) that will contribute to the current Flow
- forwardToCurrentFlow: the given step will be forwarded to the current flow
- forwardToParentFlow: the given step will be forwarded to the parent flow
-
the given stepper will emit steps, according to lifecycle of the given presentable, that will contribute to the current Flow
Declaration
Swift
case contribute(withNextPresentable: Presentable, withNextStepper: Stepper)
-
the
withStep
step will be forwarded to the current flowDeclaration
Swift
case forwardToCurrentFlow(withStep: Step)
-
the
withStep
step will be forwarded to the parent flowDeclaration
Swift
case forwardToParentFlow(withStep: Step)