method
download_chunk
rails latest stable - Class:
ActiveStorage::Service::GCSService
download_chunk(key, range)public
No documentation available.
# File activestorage/lib/active_storage/service/gcs_service.rb, line 58
def download_chunk(key, range)
instrument :download_chunk, key: key, range: range do
file_for(key).download(range: range).string
rescue Google::Cloud::NotFoundError
raise ActiveStorage::FileNotFoundError
end
end