Flowdock
method

upload_with_multipart

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: S3Service
upload_with_multipart(key, io, content_type: nil, content_disposition: nil) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activestorage/lib/active_storage/service/s3_service.rb, line 119
      def upload_with_multipart(key, io, content_type: nil, content_disposition: nil)
        part_size = [ io.size.fdiv(MAXIMUM_UPLOAD_PARTS_COUNT).ceil, MINIMUM_UPLOAD_PART_SIZE ].max

        object_for(key).upload_stream(content_type: content_type, content_disposition: content_disposition, part_size: part_size, **upload_options) do |out|
          IO.copy_stream(io, out)
        end
      end
Register or log in to add new notes.