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.



39
40
41
# File 'lib/corn/rack/slow_request_profiler.rb', line 39

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

Instance Method Details

#call(env) ⇒ Object



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

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

#terminateObject



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

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