method
close
v3.2.8 -
Show latest stable
- Class:
ActionDispatch::BodyProxy
close()public
No documentation available.
# File actionpack/lib/action_dispatch/middleware/body_proxy.rb, line 12
def close
return if @closed
@closed = true
begin
@body.close if @body.respond_to? :close
ensure
@block.call
end
end