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