com.github.andyshao.distribution.election.MasterElect Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Gear Show documentation
Show all versions of Gear Show documentation
Enhance and formating the coding of JDK
The newest version!
package com.github.andyshao.distribution.election;
import java.util.List;
/**
*
* Title: Master election
* Descript:
* Copyright: Copryright(c) Mar 27, 2018
* Encoding: UNIX UTF-8
* @author andy.shao
*
*/
public interface MasterElect {
/**
* on master change even method
* @param master {@link ElectionNode}
*/
void onMasterChange(ElectionNode master);
/**
* on election member change even method
* @param electionNodes {@link ElectionNode} list
*/
void onElectMembersChange(List electionNodes);
/**
* Itself
* @return {@link ElectionNode}
*/
ElectionNode selfNode();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy