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