method

rotate

rotate()
private

No documentation available.

# File lib/drb/timeridconv.rb, line 68
      def rotate
        synchronize do
          if @expires &.< Time.now
            @gc = @renew      # GCed
            @renew = {}
            @expires = @gc.empty? ? nil : Time.now + @keeping
          end
        end
      end