Class: Temporalio::Workflow::Info::RootInfo

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#run_idString

Returns Run ID for the root.

Returns:

  • (String)

    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_idString

Returns Workflow ID for the root.

Returns:

  • (String)

    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
)