class ActionController::Streaming::Body

def close

Close the response body if the response body supports it.
def close
  @body.close if @body.respond_to?(:close)
end