Class: RigidWorkflow::TimerJob
- Inherits:
-
ActiveJob::Base
- Object
- ActiveJob::Base
- RigidWorkflow::TimerJob
- Defined in:
- app/jobs/rigid_workflow/timer_job.rb
Overview
Processes timed signals that have expired. Runs on the :timers queue.
Instance Method Summary collapse
Instance Method Details
#perform(signal_id) ⇒ Object
9 10 11 |
# File 'app/jobs/rigid_workflow/timer_job.rb', line 9 def perform(signal_id) Signal.process_signal(signal_id) end |