Class: Corn::Rack::SlowRequestProfiler

Inherits:
Object
  • Object
show all
Defined in:
lib/corn/rack/slow_request_profiler.rb

Defined Under Namespace

Classes: ProfilingApp

Instance Method Summary collapse

Constructor Details

#initialize(app) ⇒ SlowRequestProfiler

Returns a new instance of SlowRequestProfiler.



43
44
45
# File 'lib/corn/rack/slow_request_profiler.rb', line 43

def initialize(app)
  @app = Corn.configured? ? ProfilingApp.new(app) : app
end

Instance Method Details

#call(env) ⇒ Object



47
48
49
# File 'lib/corn/rack/slow_request_profiler.rb', line 47

def call(env)
  @app.call(env)
end

#terminateObject

for test



52
53
54
# File 'lib/corn/rack/slow_request_profiler.rb', line 52

def terminate
  @app.terminate if @app.respond_to?(:terminate)
end