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();
}