WorkflowContextImpl constructor
WorkflowContextImpl({
- required StepExecutor executor,
- required TimerManager timerManager,
- required SignalManager signalManager,
- required String workflowExecutionId,
Creates a WorkflowContextImpl.
Implementation
WorkflowContextImpl({
required StepExecutor executor,
required TimerManager timerManager,
required SignalManager signalManager,
required String workflowExecutionId,
}) : _executor = executor,
_timerManager = timerManager,
_signalManager = signalManager,
_workflowExecutionId = workflowExecutionId;