about summary refs log tree commit homepage
path: root/lib/rainbows/coolio_thread_pool/watcher.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rainbows/coolio_thread_pool/watcher.rb')
-rw-r--r--lib/rainbows/coolio_thread_pool/watcher.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/rainbows/coolio_thread_pool/watcher.rb b/lib/rainbows/coolio_thread_pool/watcher.rb
new file mode 100644
index 0000000..9b0e97e
--- /dev/null
+++ b/lib/rainbows/coolio_thread_pool/watcher.rb
@@ -0,0 +1,14 @@
+# -*- encoding: binary -*-
+# :enddoc:
+class Rainbows::CoolioThreadPool::Watcher < Coolio::TimerWatcher
+  G = Rainbows::G
+
+  def initialize(threads)
+    @threads = threads
+    super(G.server.timeout, true)
+  end
+
+  def on_timer
+    @threads.each { |t| t.join(0) and G.quit! }
+  end
+end