class Async::HTTP::BufferedBody

def each(&block)

def each(&block)
	while @index < @chunks.count
		yield @chunks[@index]
		@index += 1
	end
end