Class: Sidekiq::Launcher
- Inherits:
-
Object
- Object
- Sidekiq::Launcher
- Defined in:
- lib/sidekiq/launcher.rb
Instance Attribute Summary collapse
-
#cron_poller ⇒ Object
readonly
Add cron poller to launcher.
Instance Method Summary collapse
-
#initialize(options) ⇒ Launcher
constructor
add cron poller and execute normal initialize of Sidekiq launcher.
-
#old_initialize ⇒ Object
remember old initialize.
-
#old_run ⇒ Object
remember old run.
-
#old_stop ⇒ Object
remember old stop.
-
#run ⇒ Object
execute normal run of launcher and run cron poller.
-
#stop ⇒ Object
execute normal stop of launcher and stop cron poller.
Constructor Details
Instance Attribute Details
#cron_poller ⇒ Object (readonly)
Add cron poller to launcher
13 14 15 |
# File 'lib/sidekiq/launcher.rb', line 13 def cron_poller @cron_poller end |
Instance Method Details
#old_initialize ⇒ Object
remember old initialize
17 |
# File 'lib/sidekiq/launcher.rb', line 17 alias_method :old_initialize, :initialize |
#old_run ⇒ Object
remember old run
27 |
# File 'lib/sidekiq/launcher.rb', line 27 alias_method :old_run, :run |
#old_stop ⇒ Object
remember old stop
37 |
# File 'lib/sidekiq/launcher.rb', line 37 alias_method :old_stop, :stop |
#run ⇒ Object
execute normal run of launcher and run cron poller
30 31 32 33 |
# File 'lib/sidekiq/launcher.rb', line 30 def run old_run cron_poller.async.poll(true) end |
#stop ⇒ Object
execute normal stop of launcher and stop cron poller
40 41 42 43 |
# File 'lib/sidekiq/launcher.rb', line 40 def stop cron_poller.async.terminate if poller.alive? old_stop end |