Sha256: 0f8a9558c7d31f34127a7ca10c2d9fff36a129376cc0be109ed73a07ee854646
Contents?: true
Size: 389 Bytes
Versions: 1
Compression:
Stored size: 389 Bytes
Contents
# -*- encoding: binary -*- # :enddoc: # # this is class is specific to Coolio for proxying IO-derived objects class Rainbows::Coolio::DeferredChunkResponse < Rainbows::Coolio::DeferredResponse def on_read(data) @client.write("#{data.size.to_s(16)}\r\n") @client.write(data) @client.write("\r\n") end def on_close @client.write("0\r\n\r\n") super end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rainbows-2.1.0 | lib/rainbows/coolio/deferred_chunk_response.rb |