= private = protected
interrupt(thread, id, exception)
Interrupts the timeout handler id and raises exception
# File lib/webrick/utils.rb, line 208 def interrupt(thread, id, exception) if cancel(thread, id) && thread.alive? thread.raise(exception, "execution timeout") end end