All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.documentdb.internal.RetryPolicy Maven / Gradle / Ivy

package com.microsoft.azure.documentdb.internal;

import com.microsoft.azure.documentdb.DocumentClientException;

/**
 * Used internally to define the interface for retry policy in the Azure Cosmos DB database service Java SDK.
 */
public interface RetryPolicy {
    boolean shouldRetry(DocumentClientException exception) throws DocumentClientException;

    long getRetryAfterInMilliseconds();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy