Class: Temporalio::Error::ChildWorkflowError
- Defined in:
- lib/temporalio/error/failure.rb
Overview
Error raised on child workflow failure.
Instance Attribute Summary collapse
-
#initiated_event_id ⇒ Integer
readonly
Child workflow initiated event ID.
-
#namespace ⇒ String
readonly
Child workflow namespace.
-
#retry_state ⇒ RetryState?
readonly
Retry state.
-
#run_id ⇒ String
readonly
Child workflow run ID.
-
#started_event_id ⇒ Integer
readonly
Child workflow started event ID.
-
#workflow_id ⇒ String
readonly
Child workflow ID.
-
#workflow_type ⇒ String
readonly
Child workflow type name.
Instance Attribute Details
#initiated_event_id ⇒ Integer (readonly)
Returns Child workflow initiated event ID.
229 230 231 |
# File 'lib/temporalio/error/failure.rb', line 229 def initiated_event_id @initiated_event_id end |
#namespace ⇒ String (readonly)
Returns Child workflow namespace.
221 222 223 |
# File 'lib/temporalio/error/failure.rb', line 221 def namespace @namespace end |
#retry_state ⇒ RetryState? (readonly)
Returns Retry state.
233 234 235 |
# File 'lib/temporalio/error/failure.rb', line 233 def retry_state @retry_state end |
#run_id ⇒ String (readonly)
Returns Child workflow run ID.
225 226 227 |
# File 'lib/temporalio/error/failure.rb', line 225 def run_id @run_id end |
#started_event_id ⇒ Integer (readonly)
Returns Child workflow started event ID.
231 232 233 |
# File 'lib/temporalio/error/failure.rb', line 231 def started_event_id @started_event_id end |
#workflow_id ⇒ String (readonly)
Returns Child workflow ID.
223 224 225 |
# File 'lib/temporalio/error/failure.rb', line 223 def workflow_id @workflow_id end |
#workflow_type ⇒ String (readonly)
Returns Child workflow type name.
227 228 229 |
# File 'lib/temporalio/error/failure.rb', line 227 def workflow_type @workflow_type end |