Class: Puma::ThreadPool::Reaper
- Inherits:
-
Object
- Object
- Puma::ThreadPool::Reaper
- Defined in:
- lib/puma/thread_pool.rb
Instance Method Summary collapse
-
#initialize(pool, timeout) ⇒ Reaper
constructor
A new instance of Reaper.
- #start! ⇒ Object
- #stop ⇒ Object
Constructor Details
#initialize(pool, timeout) ⇒ Reaper
Returns a new instance of Reaper.
207 208 209 210 211 |
# File 'lib/puma/thread_pool.rb', line 207 def initialize(pool, timeout) @pool = pool @timeout = timeout @running = false end |
Instance Method Details
#start! ⇒ Object
213 214 215 216 217 218 219 220 221 222 |
# File 'lib/puma/thread_pool.rb', line 213 def start! @running = true @thread = Thread.new do while @running @pool.reap sleep @timeout end end end |
#stop ⇒ Object
224 225 226 227 |
# File 'lib/puma/thread_pool.rb', line 224 def stop @running = false @thread.wakeup end |