Workflow4

data class Workflow4<I : Any, M1 : Any, M2 : Any, M3 : Any, O : Any>(val firstAgent: Agent<I, M1>, val restWorkflow: Workflow3<M1, M2, M3, O>)

Constructors

Link copied to clipboard
constructor(firstAgent: Agent<I, M1>, restWorkflow: Workflow3<M1, M2, M3, O>)

Properties

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
inline suspend fun <I : Any, M1 : Any, M2 : Any, M3 : Any, O : Any> Workflow4<I, M1, M2, M3, O>.start(input: I, vararg attachments: Attachment): WorkflowRun<O>
Link copied to clipboard
infix fun <I : Any, M1 : Any, M2 : Any, M3 : Any, M4 : Any, O : Any> Workflow4<I, M1, M2, M3, M4>.thenProcess(next: Agent<M4, O>): Workflow5<I, M1, M2, M3, M4, O>