Project

General

Profile

ActionsLike0

Feature #8155

closed

Improve support for streaming responses in WEBrick

Added by drbrain (Eric Hodel) about 12 years ago. Updated over 11 years ago.

Status:
Closed
Target version:
[ruby-core:53665]

Description

Currently WEBrick only understands a body that is a String or an IO. This makes it difficult to stream a response body. Instead of providing a body that duck-types to IO you must use IO.pipe which can be clumsy.

The attached patch checks if the body responds to #readpartial (#read is assumed) instead of if it is an instance of class IO.


Files

webrick.httpresponse.stringio.patch (2.36 KB) webrick.httpresponse.stringio.patch drbrain (Eric Hodel), 03/23/2013 05:00 PM

Updated by drbrain (Eric Hodel) over 11 years ago

  • Assignee changed from nahi (Hiroshi Nakamura) to drbrain (Eric Hodel)
#2

Updated by drbrain (Eric Hodel) over 11 years ago

  • Status changed from Assigned to Closed
  • % Done changed from 0 to 100
ActionsLike0

Also available in: Atom PDF