Class: Puma::ThreadPool::Reaper

Inherits:
Object
  • Object
show all
Defined in:
lib/puma/thread_pool.rb

Instance Method Summary collapse

Constructor Details

#initialize(pool, timeout) ⇒ Reaper

Returns a new instance of Reaper.



218
219
220
221
222
# File 'lib/puma/thread_pool.rb', line 218

def initialize(pool, timeout)
  @pool = pool
  @timeout = timeout
  @running = false
end

Instance Method Details

#start!Object



224
225
226
227
228
229
230
231
232
233
# File 'lib/puma/thread_pool.rb', line 224

def start!
  @running = true

  @thread = Thread.new do
    while @running
      @pool.reap
      sleep @timeout
    end
  end
end

#stopObject



235
236
237
238
# File 'lib/puma/thread_pool.rb', line 235

def stop
  @running = false
  @thread.wakeup
end