Provides callbacks to be executed before and after dispatching the request.

Methods
A
B
C
N
Included Modules
Class Public methods
after(*args, &block)
# File actionpack/lib/action_dispatch/middleware/callbacks.rb, line 13
def after(*args, &block)
  set_callback(:call, :after, *args, &block)
end
before(*args, &block)
# File actionpack/lib/action_dispatch/middleware/callbacks.rb, line 9
def before(*args, &block)
  set_callback(:call, :before, *args, &block)
end
new(app)
# File actionpack/lib/action_dispatch/middleware/callbacks.rb, line 18
def initialize(app)
  @app = app
end
Instance Public methods
call(env)
# File actionpack/lib/action_dispatch/middleware/callbacks.rb, line 22
def call(env)
  error = nil
  result = run_callbacks :call do
    begin
      @app.call(env)
    rescue => error
    end
  end
  raise error if error
  result
end