Class: Aws::S3::FileDownloader::PartList Private

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

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.

Instance Method Summary collapse

Constructor Details

#initialize(parts = []) ⇒ PartList

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 PartList.



275
276
277
278
# File 'lib/aws-sdk-s3/file_downloader.rb', line 275

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.



288
289
290
# File 'lib/aws-sdk-s3/file_downloader.rb', line 288

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

#each(&block) ⇒ 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.



292
293
294
# File 'lib/aws-sdk-s3/file_downloader.rb', line 292

def each(&block)
  @mutex.synchronize { @parts.each(&block) }
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.



280
281
282
# File 'lib/aws-sdk-s3/file_downloader.rb', line 280

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

#sizeObject

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.



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

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