Class: Temporalio::Client::Schedule::ActionExecution::StartWorkflow
- Inherits:
-
Object
- Object
- Temporalio::Client::Schedule::ActionExecution::StartWorkflow
- Defined in:
- lib/temporalio/client/schedule.rb
Overview
Execution of a scheduled workflow start.
Instance Attribute Summary collapse
-
#first_execution_run_id ⇒ String
Workflow run ID.
-
#workflow_id ⇒ String
Workflow ID.
Instance Attribute Details
#first_execution_run_id ⇒ String
Returns Workflow run ID.
391 392 393 394 395 396 397 398 399 400 401 402 403 |
# File 'lib/temporalio/client/schedule.rb', line 391 class StartWorkflow include ActionExecution # @!visibility private def initialize(raw_execution:) # steep:ignore:start super( workflow_id: raw_execution.workflow_id, first_execution_run_id: raw_execution.run_id ) # steep:ignore:end end end |
#workflow_id ⇒ String
Returns Workflow ID.
391 392 393 394 395 396 397 398 399 400 401 402 403 |
# File 'lib/temporalio/client/schedule.rb', line 391 class StartWorkflow include ActionExecution # @!visibility private def initialize(raw_execution:) # steep:ignore:start super( workflow_id: raw_execution.workflow_id, first_execution_run_id: raw_execution.run_id ) # steep:ignore:end end end |