Class: Temporalio::Internal::Worker::MultiRunner::Event::WorkflowActivationDecoded
- Inherits:
-
Temporalio::Internal::Worker::MultiRunner::Event
- Object
- Temporalio::Internal::Worker::MultiRunner::Event
- Temporalio::Internal::Worker::MultiRunner::Event::WorkflowActivationDecoded
- Defined in:
- lib/temporalio/internal/worker/multi_runner.rb
Instance Attribute Summary collapse
-
#activation ⇒ Object
readonly
Returns the value of attribute activation.
-
#workflow_worker ⇒ Object
readonly
Returns the value of attribute workflow_worker.
Instance Method Summary collapse
-
#initialize(workflow_worker:, activation:) ⇒ WorkflowActivationDecoded
constructor
rubocop:disable Lint/MissingSuper.
Constructor Details
#initialize(workflow_worker:, activation:) ⇒ WorkflowActivationDecoded
rubocop:disable Lint/MissingSuper
143 144 145 146 |
# File 'lib/temporalio/internal/worker/multi_runner.rb', line 143 def initialize(workflow_worker:, activation:) # rubocop:disable Lint/MissingSuper @workflow_worker = workflow_worker @activation = activation end |
Instance Attribute Details
#activation ⇒ Object (readonly)
Returns the value of attribute activation.
141 142 143 |
# File 'lib/temporalio/internal/worker/multi_runner.rb', line 141 def activation @activation end |
#workflow_worker ⇒ Object (readonly)
Returns the value of attribute workflow_worker.
141 142 143 |
# File 'lib/temporalio/internal/worker/multi_runner.rb', line 141 def workflow_worker @workflow_worker end |