Flowdock
method

cancel

Importance_0
v1_9_1_378 - Show latest stable - 0 notes - Class: TimeoutHandler
cancel(thread, id) public

No documentation

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

Hide source
# File lib/webrick/utils.rb, line 151
      def cancel(thread, id)
        if ary = @timeout_info[thread]
          ary.delete_if{|info| info.object_id == id }
          if ary.empty?
            @timeout_info.delete(thread)
          end
          return true
        end
        return false
      end
Register or log in to add new notes.