Class: Aws::S3::ObjectMultipartCopier::PartQueue Private

Inherits:
Object
  • Object
show all
Defined in:
lib/aws-sdk-s3/object_multipart_copier.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

A thread-safe work queue of part definitions for a multipart copy.

Instance Method Summary collapse

Constructor Details

#initialize(parts = []) ⇒ PartQueue

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of PartQueue.



284
285
286
287
# File 'lib/aws-sdk-s3/object_multipart_copier.rb', line 284

def initialize(parts = [])
  @parts = parts
  @mutex = Mutex.new
end

Instance Method Details

#clear!Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



293
294
295
# File 'lib/aws-sdk-s3/object_multipart_copier.rb', line 293

def clear!
  @mutex.synchronize { @parts.clear }
end

#shiftObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



289
290
291
# File 'lib/aws-sdk-s3/object_multipart_copier.rb', line 289

def shift
  @mutex.synchronize { @parts.shift }
end