writer_thread_pool: remove unnecesary debug messages
[rainbows.git] / lib / rainbows / rev_fiber_spawn.rb
blob52ba2cdf669ebb653dff834d92929386ada78efc
1 # -*- encoding: binary -*-
2 Rainbows.const_set(:RevFiberSpawn, Rainbows::CoolioFiberSpawn)
4 # CoolioFiberSpawn is the new version of this, use that instead.
6 # A combination of the Rev and FiberSpawn models.  This allows Ruby
7 # 1.9 Fiber-based concurrency for application processing while
8 # exposing a synchronous execution model and using scalable network
9 # concurrency provided by Rev.  A "rack.input" is exposed as well
10 # being Sunshowers-compatible.  Applications are strongly advised to
11 # wrap all slow IO objects (sockets, pipes) using the
12 # Rainbows::Fiber::IO or a Rev-compatible class whenever possible.
13 module Rainbows::RevFiberSpawn; end