Sha256: 09df9e50177803876841cf859c43a66f4cc32b4f448768ee05c0a306a8a3d0d8
Contents?: true
Size: 280 Bytes
Versions: 27
Compression:
Stored size: 280 Bytes
Contents
# -*- encoding: binary -*- # :enddoc: class Rainbows::CoolioThreadPool::Watcher < Coolio::TimerWatcher def initialize(threads) @threads = threads super(Rainbows.server.timeout, true) end def on_timer @threads.each { |t| t.join(0) and Rainbows.quit! } end end
Version data entries
27 entries across 27 versions & 1 rubygems