method

dispatch

Importance_0
v2.1.0 - Show latest stable - 0 notes - Class: ActionController::Dispatcher
dispatch() public

No documentation

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

Hide source
# File actionpack/lib/action_controller/dispatcher.rb, line 103
    def dispatch
      @@guard.synchronize do
        begin
          run_callbacks :before_dispatch
          handle_request
        rescue Exception => exception
          failsafe_rescue exception
        ensure
          run_callbacks :after_dispatch, :enumerator => :reverse_each
        end
      end
    end
Register or log in to add new notes.