instance method compose

Ruby on Rails 7.1.6

Since v7.0.10 Last seen in v8.0.4

Available in: v7.0.10 v7.1.6 v7.2.3 v8.0.4

Signature

compose(source_keys, destination_key, filename: nil, content_type: nil, disposition: nil, custom_metadata: {})

No documentation comment.

Parameters

source_keys req
destination_key req
filename key = nil
content_type key = nil
disposition key = nil
custom_metadata key = {}
Source
# File activestorage/lib/active_storage/service/azure_storage_service.rb, line 112
    def compose(source_keys, destination_key, filename: nil, content_type: nil, disposition: nil, custom_metadata: {})
      content_disposition = content_disposition_with(type: disposition, filename: filename) if disposition && filename

      client.create_append_blob(
        container,
        destination_key,
        content_type: content_type,
        content_disposition: content_disposition,
        metadata: custom_metadata,
      ).tap do |blob|
        source_keys.each do |source_key|
          stream(source_key) do |chunk|
            client.append_blob_block(container, blob.name, chunk)
          end
        end
      end
    end

Defined in activestorage/lib/active_storage/service/azure_storage_service.rb line 112 · View on GitHub · Improve this page · Find usages on GitHub

Defined in ActiveStorage::Service::AzureStorageService

Type at least 2 characters to search.

↑↓ navigate · open · esc close