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

com.cisco.oss.foundation.cluster.masterslave.MastershipElector Maven / Gradle / Ivy

Go to download

This project is a multi data center supported master slave cluster manager library

The newest version!
package com.cisco.oss.foundation.cluster.masterslave;

/**
 * Created by Yair Ogen (yaogen) on 14/02/2016.
 */
public interface MastershipElector {

    void init(String id, String jobName);
    boolean isReady();
    boolean isActiveVersion(String currentVersion);
    boolean isActiveDataCenter(String currentDataCenter);
    boolean isMaster();
    void close();
    String getActiveVersion();
    void cleanupMaster();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy