Class: HealthMonitor::Providers::DelayedJob

Inherits:
Base
  • Object
show all
Defined in:
lib/health_monitor/providers/delayed_job.rb

Defined Under Namespace

Classes: Configuration

Instance Attribute Summary

Attributes inherited from Base

#configuration, #request

Instance Method Summary collapse

Methods inherited from Base

configurable?, configure, #initialize, provider_name

Constructor Details

This class inherits a constructor from HealthMonitor::Providers::Base

Instance Method Details

#check!Object



21
22
23
24
25
# File 'lib/health_monitor/providers/delayed_job.rb', line 21

def check!
  check_queue_size!
rescue Exception => e
  raise DelayedJobException.new(e.message)
end