method

download_chunk

rails latest stable - Class: ActiveStorage::Service::DiskService
download_chunk(key, range)
public

No documentation available.

# File activestorage/lib/active_storage/service/disk_service.rb, line 42
    def download_chunk(key, range)
      instrument :download_chunk, key: key, range: range do
        File.open(path_for(key), "rb") do |file|
          file.seek range.begin
          file.read range.size
        end
      rescue Errno::ENOENT
        raise ActiveStorage::FileNotFoundError
      end
    end