Package com.azure.storage.blob.models
Class DownloadRetryOptions
java.lang.Object
com.azure.storage.blob.models.DownloadRetryOptions
This class contains the configuration options used to download from the blob service using smart retries, starting
from a checkpoint, rather than starting over from the beginning.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
Specifies the maximum number of additional HTTP Get requests that will be made while reading the data from a response body.setMaxRetryRequests
(int maxRetryRequests) Specifies the maximum number of additional HTTP Get requests that will be made while reading the data from a response body.
-
Constructor Details
-
DownloadRetryOptions
public DownloadRetryOptions()
-
-
Method Details
-
getMaxRetryRequests
public int getMaxRetryRequests()Specifies the maximum number of additional HTTP Get requests that will be made while reading the data from a response body.- Returns:
- the maximum number of retries to attempt before the request finally fails
-
setMaxRetryRequests
Specifies the maximum number of additional HTTP Get requests that will be made while reading the data from a response body.- Parameters:
maxRetryRequests
- The number of retries to attempt before the request finally fails- Returns:
- the updated DownloadRetryOptions object
- Throws:
IllegalArgumentException
- IfmaxRetryRequests
is less than 0
-