class Falcon::Adapters::Output

def initialize(headers, body, length)

def initialize(headers, body, length)
	@length = length
	@body = body
	
	# An enumerator over the rack response body:
	@chunks = body.to_enum(:each)
end