class Async::HTTP::Body::Buffered

def read

def read
	if chunk = @chunks[@index]
		@index += 1
	end
	
	return chunk
end