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

com.azure.cosmos.implementation.changefeed.PartitionController 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;

/**
 * Interface for the partition controller.
 */
public interface PartitionController {
    /**
     * Add or update lease item.
     *
     * @return a representation of the deferred computation of this call.
     */
    Mono addOrUpdateLease(Lease lease);

    /**
     * Initialize and start the partition controller thread.
     *
     * @return a representation of the deferred computation of this call.
     */
    Mono initialize();

    /**
     * Shutdown partition controller thread.
     *
     * @return a representation of the deferred computation of this call.
     */
    Mono shutdown();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy