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

org.jgroups.protocols.raft.Candidate Maven / Gradle / Ivy

There is a newer version: 1.0.14.Final
Show newest version
package org.jgroups.protocols.raft;

/**
 * Implements the behavior of a RAFT candidate
 * @author Bela Ban
 * @since  0.1
 */
public class Candidate extends RaftImpl {
    public Candidate(RAFT raft) {
        super(raft);
    }


    public void init() {
        super.init();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy