Class: Temporalio::Internal::Worker::MultiRunner::Event::WorkflowActivationCompletionComplete
- Inherits:
-
Temporalio::Internal::Worker::MultiRunner::Event
- Object
- Temporalio::Internal::Worker::MultiRunner::Event
- Temporalio::Internal::Worker::MultiRunner::Event::WorkflowActivationCompletionComplete
- Defined in:
- lib/temporalio/internal/worker/multi_runner.rb
Instance Attribute Summary collapse
-
#error ⇒ Object
readonly
Returns the value of attribute error.
-
#run_id ⇒ Object
readonly
Returns the value of attribute run_id.
Instance Method Summary collapse
-
#initialize(run_id:, error:) ⇒ WorkflowActivationCompletionComplete
constructor
rubocop:disable Lint/MissingSuper.
Constructor Details
#initialize(run_id:, error:) ⇒ WorkflowActivationCompletionComplete
rubocop:disable Lint/MissingSuper
163 164 165 166 |
# File 'lib/temporalio/internal/worker/multi_runner.rb', line 163 def initialize(run_id:, error:) # rubocop:disable Lint/MissingSuper @run_id = run_id @error = error end |
Instance Attribute Details
#error ⇒ Object (readonly)
Returns the value of attribute error.
161 162 163 |
# File 'lib/temporalio/internal/worker/multi_runner.rb', line 161 def error @error end |
#run_id ⇒ Object (readonly)
Returns the value of attribute run_id.
161 162 163 |
# File 'lib/temporalio/internal/worker/multi_runner.rb', line 161 def run_id @run_id end |