instance method
stream
Ruby on Rails 6.1.7.10
Since v6.1.7.10 Last seen in v6.1.7.10 PrivateSignature
stream(blob)
No documentation comment.
Parameters
-
blobreq
Source
# 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
Defined in activestorage/app/controllers/active_storage/base_controller.rb line 12
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveStorage::BaseController