class Protocol::Rack::Body::Streaming

def read

Invokes the block in a fiber which yields chunks when they are available.
def read
	@output ||= Output.new(@input, @block)
	return @output.read
end