com.github.andyshao.distribution.election.Election 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;
/**
*
* Title:
* Descript:
* Copyright: Copryright(c) Mar 27, 2018
* Encoding: UNIX UTF-8
* @author andy.shao
*
*/
public interface Election {
/**
* elect operation
* @param elect {@link MasterElect}
* @throws ElectionException any type election error
*/
void elect(MasterElect elect) throws ElectionException;
/**
* cancel operation
* @throws ElectionException any type election error
*/
void cancel() throws ElectionException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy