Class: Sidekiq::CLI
- Inherits:
-
Object
- Object
- Sidekiq::CLI
- Includes:
- Util, Singleton
- Defined in:
- lib/sidekiq/cli.rb
Constant Summary
Constants included from Util
Instance Attribute Summary collapse
-
#code ⇒ Object
Used for CLI testing.
-
#manager ⇒ Object
Returns the value of attribute manager.
Instance Method Summary collapse
-
#initialize ⇒ CLI
constructor
A new instance of CLI.
- #interrupt ⇒ Object
- #parse(args = ARGV) ⇒ Object
- #run ⇒ Object
Methods included from Util
#constantize, #logger, #process_id, #redis, #watchdog
Constructor Details
#initialize ⇒ CLI
Returns a new instance of CLI.
44 45 46 47 48 |
# File 'lib/sidekiq/cli.rb', line 44 def initialize @code = nil @interrupt_mutex = Mutex.new @interrupted = false end |
Instance Attribute Details
#code ⇒ Object
Used for CLI testing
41 42 43 |
# File 'lib/sidekiq/cli.rb', line 41 def code @code end |
#manager ⇒ Object
Returns the value of attribute manager.
42 43 44 |
# File 'lib/sidekiq/cli.rb', line 42 def manager @manager end |
Instance Method Details
#interrupt ⇒ Object
85 86 87 88 89 90 91 92 |
# File 'lib/sidekiq/cli.rb', line 85 def interrupt @interrupt_mutex.synchronize do unless @interrupted @interrupted = true Thread.main.raise Interrupt end end end |
#parse(args = ARGV) ⇒ Object
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
# File 'lib/sidekiq/cli.rb', line 50 def parse(args=ARGV) @code = nil Sidekiq.logger cli = (args) config = parse_config(cli) .merge!(config.merge(cli)) Sidekiq.logger.level = Logger::DEBUG if [:verbose] Celluloid.logger = nil validate! write_pid boot_system end |
#run ⇒ Object
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
# File 'lib/sidekiq/cli.rb', line 66 def run @manager = Sidekiq::Manager.new() poller = Sidekiq::Retry::Poller.new begin logger.info 'Starting processing, hit Ctrl-C to stop' @manager.start! poller.poll! sleep rescue Interrupt logger.info 'Shutting down' poller.terminate! if poller.alive? @manager.stop!(:shutdown => true, :timeout => [:timeout]) @manager.wait(:shutdown) # Explicitly exit so busy Processor threads can't block # process shutdown. exit(0) end end |