com.github.andyshao.distribution.election.MasterElectAlgorithm 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;
import java.util.Optional;
/**
*
* Title:
* Descript:
* Copyright: Copryright(c) Mar 28, 2018
* Encoding: UNIX UTF-8
* @author andy.shao
*
*/
public interface MasterElectAlgorithm {
/**
* Find master {@link ElectionNode}
* @param nodes {@link ElectionNode} list
* @return the master {@link ElectionNode}
*/
Optional findMaster(List nodes);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy