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.



197
198
199
200
# File 'lib/aws-sdk-s3/file_downloader.rb', line 197

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.



210
211
212
# File 'lib/aws-sdk-s3/file_downloader.rb', line 210

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.



214
215
216
# File 'lib/aws-sdk-s3/file_downloader.rb', line 214

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.



202
203
204
# File 'lib/aws-sdk-s3/file_downloader.rb', line 202

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.



206
207
208
# File 'lib/aws-sdk-s3/file_downloader.rb', line 206

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