about summary refs log tree commit homepage
path: root/lib/rainbows/coolio/response_pipe.rb
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-12-30 08:32:28 +0000
committerEric Wong <normalperson@yhbt.net>2011-01-04 16:21:17 -0800
commit4a76da1833922c74e147be5def9bfe04fd0c16a2 (patch)
tree7ee061ee23e7bff38110341a81ed7a315a0e373c /lib/rainbows/coolio/response_pipe.rb
parented28feabd79697cb27722036622aeca1fbf0723d (diff)
downloadrainbows-4a76da1833922c74e147be5def9bfe04fd0c16a2.tar.gz
coolio: rename deferred_response => response_pipe
For consistency with the EventMachine code
Diffstat (limited to 'lib/rainbows/coolio/response_pipe.rb')
-rw-r--r--lib/rainbows/coolio/response_pipe.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/rainbows/coolio/response_pipe.rb b/lib/rainbows/coolio/response_pipe.rb
new file mode 100644
index 0000000..42483c2
--- /dev/null
+++ b/lib/rainbows/coolio/response_pipe.rb
@@ -0,0 +1,20 @@
+# -*- encoding: binary -*-
+# :enddoc:
+#
+# this is class is specific to Coolio for writing large static files
+# or proxying IO-derived objects
+class Rainbows::Coolio::ResponsePipe < Coolio::IO
+  def initialize(io, client, body)
+    super(io)
+    @client, @body = client, body
+  end
+
+  def on_read(data)
+    @client.write(data)
+  end
+
+  def on_close
+    @body.respond_to?(:close) and @body.close
+    @client.next!
+  end
+end