Class: Aws::S3::FileDownloader::PartList Private
- Inherits:
-
Object
- Object
- Aws::S3::FileDownloader::PartList
- 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
- #clear! ⇒ Object private
- #each(&block) ⇒ Object private
-
#initialize(parts = []) ⇒ PartList
constructor
private
A new instance of PartList.
- #shift ⇒ Object private
- #size ⇒ Object private
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.
277 278 279 280 |
# File 'lib/aws-sdk-s3/file_downloader.rb', line 277 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.
290 291 292 |
# File 'lib/aws-sdk-s3/file_downloader.rb', line 290 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.
294 295 296 |
# File 'lib/aws-sdk-s3/file_downloader.rb', line 294 def each(&block) @mutex.synchronize { @parts.each(&block) } end |
#shift ⇒ 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.
282 283 284 |
# File 'lib/aws-sdk-s3/file_downloader.rb', line 282 def shift @mutex.synchronize { @parts.shift } end |
#size ⇒ 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.
286 287 288 |
# File 'lib/aws-sdk-s3/file_downloader.rb', line 286 def size @mutex.synchronize { @parts.size } end |