# -*- encoding: binary -*- # :enddoc: # # this is class is specific to Rev for writing large static files # or proxying IO-derived objects class Rainbows::Rev::DeferredResponse < ::Rev::IO def initialize(io, client, body) super(io) @client, @body = client, body end def on_read(data) @client.write(data) end def on_close @client.next! if @client.attached? # attached? is false if write fails @body.respond_to?(:close) and @body.close end end