Class: RigidWorkflow::ActivityJob

Inherits:
ActiveJob::Base
  • Object
show all
Defined in:
app/jobs/rigid_workflow/activity_job.rb

Overview

Executes a workflow activity. Runs on the :activities queue.

Instance Method Summary collapse

Instance Method Details

#perform(step_id) ⇒ Object



10
11
12
# File 'app/jobs/rigid_workflow/activity_job.rb', line 10

def perform(step_id)
  Step.execute_activity(step_id)
end