
com.cisco.oss.foundation.cluster.masterslave.MastershipElector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of master-slave Show documentation
Show all versions of master-slave Show documentation
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