WorkflowContextImpl constructor

WorkflowContextImpl({
  1. required StepExecutor executor,
  2. required TimerManager timerManager,
  3. required SignalManager signalManager,
  4. 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;