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

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

package com.microsoft.azure.documentdb.internal;

import com.microsoft.azure.documentdb.DocumentClientException;

/**
 * Define a delegate used by the RetryUtility to refresh auth token on retry.
 *
 */
public interface RefreshAuthTokenDelegate {
	/**
	 * Update the new auth token on DocumentServiceRequest
	 * @throws DocumentClientException the original exception
	 */
	void apply(DocumentServiceRequest request);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy