Example usage for io.vertx.core.spi.cluster ClusterManager interface-usage

List of usage examples for io.vertx.core.spi.cluster ClusterManager interface-usage

Introduction

In this page you can find the example usage for io.vertx.core.spi.cluster ClusterManager interface-usage.

Usage

From source file com.usebilbo.vertx.cluster.manager.IgniteClusterManager.java

/**
 * Apache Ignite based cluster manager.
 *
 * @author Andrey Gura
 * @author siy
 */

From source file io.atomix.vertx.AtomixClusterManager.java

/**
 * Vert.x Atomix cluster manager.
 *
 * @author <a href="http://github.com/kuujo>Jordan Halterman</a>
 */
public class AtomixClusterManager implements ClusterManager {

From source file net.kuujo.copycat.vertx.CopycatClusterManager.java

/**
 * Copycat Vert.x cluster manager.
 *
 * @author <a href="http://github.com/kuujo">Jordan Halterman</a>
 */
public class CopycatClusterManager implements ClusterManager {

From source file org.vertx.java.resourceadapter.FakeClusterManager.java

public class FakeClusterManager implements ClusterManager {

    private static Map<String, FakeClusterManager> nodes = Collections.synchronizedMap(new LinkedHashMap<>());

    private static List<NodeListener> nodeListeners = new CopyOnWriteArrayList<>();
    private static ConcurrentMap<String, AsyncMap> asyncMaps = new ConcurrentHashMap<>();