Assembly: OptimaJet.Workflow.Core

Enum SubprocessStartupType

OptimaJet.Workflow.Core.Model.SubprocessStartupType

Specifies how a TransitionForkType.ForkStart transition schedules subprocess startup.

public enum SubprocessStartupType

Fields

SameThread = 0 #
Starts the subprocess synchronously within the parent process's execution flow. This is the default subprocess startup type.
AnotherThread = 1 #
Executes the subprocess in a separate asynchronous flow that the parent process's execution flow does not await.
TimerQueue = 2 #
Defers subprocess startup by scheduling it through the timer queue.