Class: ActionDispatch::Executor

Inherits:
Object
  • Object
show all
Defined in:
actionpack/lib/action_dispatch/middleware/executor.rb

Direct Known Subclasses

Reloader

Instance Method Summary collapse

Constructor Details

#initialize(app, executor) ⇒ Executor

Returns a new instance of Executor.



7
8
9
# File 'actionpack/lib/action_dispatch/middleware/executor.rb', line 7

def initialize(app, executor)
  @app, @executor = app, executor
end

Instance Method Details

#call(env) ⇒ Object



11
12
13
14
15
16
17
18
19
# File 'actionpack/lib/action_dispatch/middleware/executor.rb', line 11

def call(env)
  state = @executor.run!
  begin
    response = @app.call(env)
    returned = response << ::Rack::BodyProxy.new(response.pop) { state.complete! }
  ensure
    state.complete! unless returned
  end
end