public Method

Dispatcher.dispatch

There's no documentation for this item.

Source Code

# File action_controller/dispatcher.rb, line 101
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
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.