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

com.azure.cosmos.implementation.ICollectionRoutingMapCache Maven / Gradle / Ivy

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

import com.azure.cosmos.implementation.routing.CollectionRoutingMap;
import reactor.core.publisher.Mono;

import java.util.Map;

// TODO: add documentation
/**
 * While this class is public, but it is not part of our published public APIs.
 * This is meant to be internally used only by our sdk.
 **/
public interface ICollectionRoutingMapCache {
    default Mono> tryLookupAsync(
            MetadataDiagnosticsContext metaDataDiagnosticsContext,
            String collectionRid,
            CollectionRoutingMap previousValue,
            Map properties) {
        return tryLookupAsync(metaDataDiagnosticsContext, collectionRid, previousValue, false, properties);
    }

    Mono> tryLookupAsync(
            MetadataDiagnosticsContext metaDataDiagnosticsContext,
            String collectionRid,
            CollectionRoutingMap previousValue,
            boolean forceRefreshCollectionRoutingMap,
            Map properties);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy