method
call_callback
call_callback(callback_name, req, res)
private
Hide source
# File lib/webrick/httpservlet/filehandler.rb, line 370 def call_callback(callback_name, req, res) if cb = @options[callback_name] cb.call(req, res) end end


