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

com.azure.cosmos.CosmosOperationPolicy Maven / Gradle / Ivy

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.cosmos;

import com.azure.cosmos.models.CosmosOperationDetails;

/**
 * Represents a policy that can be used with {@link CosmosClientBuilder} to customize the request sent to Azure Cosmos DB.
 */
@FunctionalInterface
public interface CosmosOperationPolicy {

    /**
     * Processes the request details and calls the next policy in the chain.
     *
     * @param operationDetails The request details.
     */
    void process(CosmosOperationDetails operationDetails);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy