method

stream

rails latest stable - Class: ActiveStorage::BaseController

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v6.1.7.7) is shown here.

stream(blob)
private

No documentation available.

# File activestorage/app/controllers/active_storage/base_controller.rb, line 12
    def stream(blob)
      blob.download do |chunk|
        response.stream.write chunk
      end
    ensure
      response.stream.close
    end