public interface MultipartManifest
Modifier and Type | Method and Description |
---|---|
String |
getUploadId()
Gets the upload ID associated with the multi-part upload.
|
boolean |
isUploadAborted()
Check to see if abort has been called on the upload.
|
boolean |
isUploadComplete()
Check to see whether all parts have completed (successfully or unsuccessfully).
|
boolean |
isUploadSuccessful()
Check to see whether all parts have completed successfully.
|
List<CommitMultipartUploadPartDetails> |
listCompletedParts()
Lists all currently parts that have completed upload so far.
|
List<Integer> |
listFailedParts()
Lists the part numbers for all parts that have failed to upload so far.
|
List<MultipartUploadFailedPartDetails> |
listFailedPartsDetails()
Lists all the parts that have failed to upload and the cause of the failure
|
List<Integer> |
listInProgressParts()
Lists the part numbers for all parts that have currently not been uploaded or are in
progress.
|
String getUploadId()
Gets the upload ID associated with the multi-part upload.
boolean isUploadComplete()
Check to see whether all parts have completed (successfully or unsuccessfully).
boolean isUploadSuccessful()
Check to see whether all parts have completed successfully.
boolean isUploadAborted()
Check to see if abort has been called on the upload. Once aborted, the upload cannot have anymore parts added to it.
List<CommitMultipartUploadPartDetails> listCompletedParts()
Lists all currently parts that have completed upload so far.
List<Integer> listFailedParts()
Lists the part numbers for all parts that have failed to upload so far.
List<Integer> listInProgressParts()
Lists the part numbers for all parts that have currently not been uploaded or are in progress.
In the event that an upload is aborted, parts that have not been started yet will show up as in-progress in the manifest.
List<MultipartUploadFailedPartDetails> listFailedPartsDetails()
Lists all the parts that have failed to upload and the cause of the failure
Copyright © 2016–2024. All rights reserved.