instance method
dispatch
Ruby on Rails 2.2.3
Since v2.2.3 Last seen in v2.3.18Available in: v2.2.3 v2.3.18
Signature
dispatch()
No documentation comment.
Source
# File actionpack/lib/action_controller/dispatcher.rb, line 120
def dispatch
if ActionController::Base.allow_concurrency
dispatch_unlocked
else
@@guard.synchronize do
dispatch_unlocked
end
end
end
Defined in actionpack/lib/action_controller/dispatcher.rb line 120
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionController::Dispatcher