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

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

package com.microsoft.azure.documentdb.internal;

import com.microsoft.azure.documentdb.DocumentClientException;

/**
 * Define a delegate used by the RetryUtility to retry a DocumentServiceRequest.
 *
 */
public abstract interface RetryRequestDelegate {
    /**
     * @param request the request to be issued
     * @return the DocumentServiceResponse instance
     * @throws DocumentClientException the original exception
     */
    abstract DocumentServiceResponse apply(DocumentServiceRequest request) throws DocumentClientException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy