class Falcon::Adapters::Output

def each(&block)

@parameter chunk [String]
@yields {|chunk| ...}
Enumerate the response body.
def each(&block)
	@body.each(&block)
ensure
	self.close($!)
end