method

upload_with_multipart

Importance_0
v8.1.1 - Show latest stable - 0 notes - Class: S3Service
upload_with_multipart(key, io, content_type: nil, content_disposition: nil, custom_metadata: {}) 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 148
      def upload_with_multipart(key, io, content_type: nil, content_disposition: nil, custom_metadata: {})
        part_size = [ io.size.fdiv(MAXIMUM_UPLOAD_PARTS_COUNT).ceil, MINIMUM_UPLOAD_PART_SIZE ].max

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