class Async::HTTP::Body::Readable

def each

Enumerate all chunks until finished, then invoke `#close`.
def each
	return to_enum unless block_given?
	
	while chunk = self.read
		yield chunk
		# chunk.clear
	end
ensure
	self.close($!)
end