Class: Rack::Lock
- Defined in:
- lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/rack-2.2.5/lib/rack/lock.rb
Overview
Rack::Lock locks every request inside a mutex, so that every request will effectively be executed synchronously.
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, mutex = Mutex.new) ⇒ Lock
constructor
A new instance of Lock.
Constructor Details
#initialize(app, mutex = Mutex.new) ⇒ Lock
Returns a new instance of Lock.
9 10 11 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/rack-2.2.5/lib/rack/lock.rb', line 9 def initialize(app, mutex = Mutex.new) @app, @mutex = app, mutex end |
Instance Method Details
#call(env) ⇒ Object
13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/rack-2.2.5/lib/rack/lock.rb', line 13 def call(env) @mutex.lock @env = env @old_rack_multithread = env[RACK_MULTITHREAD] begin response = @app.call(env.merge!(RACK_MULTITHREAD => false)) returned = response << BodyProxy.new(response.pop) { unlock } ensure unlock unless returned end end |