Class: Sidekiq::Simulator

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/sidekiq/simulator.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(queue) ⇒ Simulator

Returns a new instance of Simulator.



15
16
17
18
# File 'lib/sidekiq/simulator.rb', line 15

def initialize(queue)
  @queues = [queue].flatten.uniq
  @launcher = Sidekiq::Launcher.new(sidekiq_options(queues))
end

Instance Attribute Details

#launcherObject (readonly)

Returns the value of attribute launcher.



9
10
11
# File 'lib/sidekiq/simulator.rb', line 9

def launcher
  @launcher
end

#queuesObject (readonly)

Returns the value of attribute queues.



9
10
11
# File 'lib/sidekiq/simulator.rb', line 9

def queues
  @queues
end

Class Method Details

.process_queue(queue) ⇒ Object



11
12
13
# File 'lib/sidekiq/simulator.rb', line 11

def self.process_queue(queue)
  new(queue).process_queue { yield }
end

Instance Method Details

#process_queueObject



20
21
22
23
24
# File 'lib/sidekiq/simulator.rb', line 20

def process_queue
  run_launcher { yield }
ensure
  terminate_launcher
end