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

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

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

import java.util.concurrent.CompletableFuture;

/**
 * Defines the contract to add and remove servers (RAFT.members).
 * @author Bela Ban
 * @since  0.2
 */
public interface DynamicMembership {
    CompletableFuture addServer(String name) throws Exception;
    CompletableFuture removeServer(String name) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy