Package | Description |
---|---|
com.microsoft.azure.storage |
This package contains the storage service base classes.
|
com.microsoft.azure.storage.core |
FOR INTERNAL USE ONLY.
|
Modifier and Type | Class and Description |
---|---|
class |
RetryExponentialRetry
Represents a retry policy that performs a specified number of retries, using a randomized exponential backoff scheme
to determine the interval between retries.
|
class |
RetryLinearRetry
Represents a retry policy that performs a specified number of retries, using a specified fixed time interval between
retries.
|
class |
RetryNoRetry
Represents a retry policy that performs no retries.
|
class |
RetryPolicy
Abstract class that represents a retry policy.
|
Modifier and Type | Method and Description |
---|---|
RetryPolicyFactory |
RequestOptions.getRetryPolicyFactory()
Gets the retry policy to use for this request.
|
Modifier and Type | Method and Description |
---|---|
void |
RequestOptions.setRetryPolicyFactory(RetryPolicyFactory retryPolicyFactory)
Sets the RetryPolicyFactory object to use for this request.
|
Modifier and Type | Method and Description |
---|---|
static <CLIENT_TYPE,PARENT_TYPE,RESULT_TYPE> |
ExecutionEngine.executeWithRetry(CLIENT_TYPE client,
PARENT_TYPE parentObject,
StorageRequest<CLIENT_TYPE,PARENT_TYPE,RESULT_TYPE> task,
RetryPolicyFactory policyFactory,
OperationContext opContext)
Executes an operation and enforces a retrypolicy to handle any potential errors
|
Constructor and Description |
---|
LazySegmentedIterable(StorageRequest<CLIENT_TYPE,PARENT_TYPE,ResultSegment<ENTITY_TYPE>> segmentGenerator,
CLIENT_TYPE client,
PARENT_TYPE parent,
RetryPolicyFactory policyFactory,
OperationContext opContext) |
LazySegmentedIterator(StorageRequest<CLIENT_TYPE,PARENT_TYPE,ResultSegment<ENTITY_TYPE>> segmentGenerator,
CLIENT_TYPE client,
PARENT_TYPE parent,
RetryPolicyFactory policyFactory,
OperationContext opContext)
Initializes the LazySegmentedIterator.
|
Copyright © 2019. All rights reserved.