Rainbows! 5.2.1
[rainbows.git] / lib / rainbows / xepoll.rb
blob1ba64f6961b2d578ceac9a9c6d9d5e4ebf4ef3fe
1 # -*- encoding: binary -*-
2 require 'raindrops'
3 require 'rainbows/epoll'
5 # Edge-triggered epoll concurrency model with blocking accept() in a
6 # (hopefully) native thread.  This is just like Epoll, but recommended
7 # for Ruby 1.9 users as it can avoid accept()-scalability issues on
8 # multicore machines with many worker processes.
10 # Do not use this if you have slow external dependencies.
12 # === RubyGem Requirements
14 # * raindrops 0.6.0 or later
15 # * sleepy_penguin 3.0.1 or later
16 # * sendfile 1.1.0 or later
17 module Rainbows::XEpoll
18   # :stopdoc:
19   include Rainbows::Base
20   autoload :Client, 'rainbows/xepoll/client'
22   def init_worker_process(worker)
23     super
24     Rainbows.const_set(:EP, SleepyPenguin::Epoll.new)
25     Rainbows::Client.__send__ :include, Client
26   end
28   def worker_loop(worker) # :nodoc:
29     init_worker_process(worker)
30     Client.loop
31   end
32   # :startdoc:
33 end