class Falcon::Adapters::Output

def read

@returns [String | Nil]
Read the next chunk from the response body.
def read
	@chunks ||= @body.to_enum(:each)
	
	return @chunks.next
rescue StopIteration
	return nil
end