Method: ActionController::Streaming::Body#close
- Defined in:
- actionpack/lib/action_controller/metal/streaming.rb
#close ⇒ Object
Close the response body if the response body supports it.
233 234 235 |
# File 'actionpack/lib/action_controller/metal/streaming.rb', line 233 def close @body.close if @body.respond_to?(:close) end |