This class acts as a Rack middleware to be added to the application stack. This middleware performs a check and reload for source files at the start of each request, but also respects a specified cool down time during which no further action will be taken.
Invoked in order to perform the reload as part of the request stack.
# File lib/padrino-core/reloader.rb, line 245 def call(env) if @cooldown && Time.now > @last + @cooldown Thread.list.size > 1 ? Thread.exclusive { Padrino.reload! } : Padrino.reload! @last = Time.now end @app.call(env) end
Generated with the Darkfish Rdoc Generator 2.