Flowdock
fetch(key) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/drb/timeridconv.rb, line 40
      def fetch(key)
        synchronize do
          rotate
          obj = peek(key)
          raise InvalidIndexError if obj == @sentinel
          @renew[key] = obj # KeepIt
          return obj
        end
      end
Register or log in to add new notes.