data class ProcessChain<C>
Process chain, contains the name of the process, the router, the name of this step and the description of this step
ProcessChain(process: String, router: Router<C>, name: String = process, description: String = "")
Process chain, contains the name of the process, the router, the name of this step and the description of this step |
val description: String
Description of what this step does |
|
val name: String
Name of this step |
|
val process: String
Process to use |
|
val router: Router<C>
Router to select next step |