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