method
close
v4.2.1 -
Show latest stable
- Class:
ActionDispatch::Response::RackBody
close()public
No documentation available.
# File actionpack/lib/action_dispatch/http/response.rb, line 365
def close
# Rack "close" maps to Response#abort, and *not* Response#close
# (which is used when the controller's finished writing)
@response.abort
end