method

register

register(thread, time, exception)
public

No documentation available.

# File lib/webrick/utils.rb, line 145
      def register(thread, time, exception)
        @timeout_info[thread] ||= Array.new
        @timeout_info[thread] << [time, exception]
        return @timeout_info[thread].last.object_id
      end