Class: Temporalio::Internal::Worker::MultiRunner::Event::WorkflowActivationDecoded

Inherits:
Temporalio::Internal::Worker::MultiRunner::Event show all
Defined in:
lib/temporalio/internal/worker/multi_runner.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#activationObject (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_workerObject (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