class Merb::Dispatcher
Attributes
use_mutex[RW]
@api private
Public Class Methods
handle(request)
click to toggle source
Dispatch the rack environment.
ControllerExceptions are rescued here and redispatched.
@param rack_env [Rack::Environment] The rack environment, which is used to instantiate a Merb::Request @return [Merb::Controller] The Merb::Controller that was dispatched to
@api private
# File lib/merb-core/dispatch/dispatcher.rb, line 28 def handle(request) request.handle end
work_queue()
click to toggle source
@return [Queue] the current queue of dispatch jobs.
@api private
# File lib/merb-core/dispatch/dispatcher.rb, line 16 def work_queue @@work_queue end