Class: Temporalio::Workflow::Info::ParentInfo
- Inherits:
-
Struct
- Object
- Struct
- Temporalio::Workflow::Info::ParentInfo
- 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 parent of a workflow.
Instance Attribute Summary collapse
-
#namespace ⇒ String
Namespace for the parent.
-
#run_id ⇒ String
Run ID for the parent.
-
#workflow_id ⇒ String
Workflow ID for the parent.
Instance Attribute Details
#namespace ⇒ String
Returns Namespace for the parent.
74 75 76 77 78 79 |
# File 'lib/temporalio/workflow/info.rb', line 74 ParentInfo = Struct.new( :namespace, :run_id, :workflow_id, keyword_init: true ) |
#run_id ⇒ String
Returns Run ID for the parent.
74 75 76 77 78 79 |
# File 'lib/temporalio/workflow/info.rb', line 74 ParentInfo = Struct.new( :namespace, :run_id, :workflow_id, keyword_init: true ) |
#workflow_id ⇒ String
Returns Workflow ID for the parent.
74 75 76 77 78 79 |
# File 'lib/temporalio/workflow/info.rb', line 74 ParentInfo = Struct.new( :namespace, :run_id, :workflow_id, keyword_init: true ) |