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

com.azure.cosmos.implementation.changefeed.PartitionCheckpointer Maven / Gradle / Ivy

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

import reactor.core.publisher.Mono;

/**
 * Checkpoint the given partition up to the given continuation token.
 */
public interface PartitionCheckpointer {
    /**
     * Checkpoints the given partition up to the given continuation token.
     *
     * @param сontinuationToken the continuation token.
     * @return a deferred operation of this call.
     */
    Mono checkpointPartition(String сontinuationToken);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy