Class: Rack::Lock

Inherits:
Object
  • Object
show all
Defined in:
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

Constructor Details

#initialize(app, mutex = Mutex.new) ⇒ Lock

Returns a new instance of Lock.



9
10
11
# File '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
# File 'lib/rack/lock.rb', line 13

def call(env)
  @mutex.lock
  begin
    response = @app.call(env)
    returned = response << BodyProxy.new(response.pop) { unlock }
  ensure
    unlock unless returned
  end
end