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

com.yahoo.gondola.Role Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2015, Yahoo Inc.
 * Copyrights licensed under the New BSD License.
 * See the accompanying LICENSE file for terms.
 */
package com.yahoo.gondola;

/**
 * Enum to represent all three Raft roles. Every member must be in one of these three roles.
 */
public enum Role {
    // Represents the leader role
    LEADER,

    // Represents the candidate role
    CANDIDATE,

    // Represents the follower role
    FOLLOWER
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy