ActionConnectingAssembly
public struct ActionConnectingAssembly<VC, C> where VC : UIViewController
Helper class to build a chain of steps. Can not be used directly.
-
Connects previously provided step instance with an
Action
Declaration
Swift
public func using(_ action: some Action) -> StepChainAssembly<VC, C>
Parameters
action
Action
instance to be used with a step.Return Value
ChainAssembly
to continue building the chain. -
Connects previously provided step instance with an
Action
Declaration
Swift
public func using<A>(_ action: A) -> ContainerStepChainAssembly<A.ViewController, VC, C> where A : ContainerAction
Parameters
action
Action
instance to be used with a step.Return Value
ChainAssembly
to continue building the chain.