Class: Temporalio::Workflow::Info::RootInfo
- Inherits:
-
Struct
- Object
- Struct
- Temporalio::Workflow::Info::RootInfo
- Defined in:
- lib/temporalio/workflow/info.rb
Overview
Note:
WARNING: This class may have required parameters added to its constructor. Users should not instantiate this class or it may break in incompatible ways.
Information about a root of a workflow.
Instance Attribute Summary collapse
-
#run_id ⇒ String
Run ID for the root.
-
#workflow_id ⇒ String
Workflow ID for the root.
Instance Attribute Details
#run_id ⇒ String
Returns Run ID for the root.
100 101 102 103 104 |
# File 'lib/temporalio/workflow/info.rb', line 100 RootInfo = Struct.new( :run_id, :workflow_id, keyword_init: true ) |
#workflow_id ⇒ String
Returns Workflow ID for the root.
100 101 102 103 104 |
# File 'lib/temporalio/workflow/info.rb', line 100 RootInfo = Struct.new( :run_id, :workflow_id, keyword_init: true ) |