class Async::HTTP::DeflateBody

def each(&block)

def each(&block)
	return to_enum unless block_given?
	
	while chunk = self.read
		yield chunk
	end
end