method
dispatch
v2.2.1 -
Show latest stable
- Class:
ActionController::Dispatcher
dispatch()public
No documentation available.
# File actionpack/lib/action_controller/dispatcher.rb, line 118
def dispatch
if ActionController::Base.allow_concurrency
dispatch_unlocked
else
@@guard.synchronize do
dispatch_unlocked
end
end
end