Class: Delayed::Worker::NullHealthCheck
- Inherits:
-
HealthCheck
- Object
- HealthCheck
- Delayed::Worker::NullHealthCheck
- Defined in:
- lib/delayed/worker/null_health_check.rb
Instance Attribute Summary
Attributes inherited from HealthCheck
Instance Method Summary collapse
- #live_workers ⇒ Object
-
#start ⇒ Object
rubocop:disable Naming/PredicateMethod.
-
#stop ⇒ Object
rubocop:disable Naming/PredicateMethod.
Methods inherited from HealthCheck
build, inherited, #initialize, reschedule_abandoned_jobs
Constructor Details
This class inherits a constructor from Delayed::Worker::HealthCheck
Instance Method Details
#live_workers ⇒ Object
16 17 18 |
# File 'lib/delayed/worker/null_health_check.rb', line 16 def live_workers [] end |
#start ⇒ Object
rubocop:disable Naming/PredicateMethod
8 9 10 |
# File 'lib/delayed/worker/null_health_check.rb', line 8 def start # rubocop:disable Naming/PredicateMethod true end |
#stop ⇒ Object
rubocop:disable Naming/PredicateMethod
12 13 14 |
# File 'lib/delayed/worker/null_health_check.rb', line 12 def stop # rubocop:disable Naming/PredicateMethod true end |