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.



258
259
260
261
# File 'lib/aws-sdk-s3/file_downloader.rb', line 258

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.



271
272
273
# File 'lib/aws-sdk-s3/file_downloader.rb', line 271

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.



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

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.



263
264
265
# File 'lib/aws-sdk-s3/file_downloader.rb', line 263

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.



267
268
269
# File 'lib/aws-sdk-s3/file_downloader.rb', line 267

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