method
download_identifiable_chunk
v6.1.3.1 -
Show latest stable
- Class:
ActiveStorage::Blob::Identifiable
download_identifiable_chunk()private
No documentation available.
# File activestorage/app/models/active_storage/blob/identifiable.rb, line 25
def download_identifiable_chunk
if byte_size.positive?
service.download_chunk key, 0...4.kilobytes
else
""
end
end