# File lib/lockfile.rb, line 45
      def next
        ret = self[@idx]
        @idx = ((@idx + 1) % self.size)
        ret
      end