class Async::HTTP::Body::Buffered

def read

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