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

org.infinispan.health.ClusterHealth Maven / Gradle / Ivy

package org.infinispan.health;

import java.util.List;

/**
 * Cluster health information.
 */
public interface ClusterHealth {

    /**
     * Returns total cluster health.
     */
    HealthStatus getHealthStatus();

    /**
     * Returns the name of the cluster.
     */
    String getClusterName();

    /**
     * Returns the number of nodes in the cluster.
     */
    int getNumberOfNodes();

    /**
     * Returns node names.
     */
    List getNodeNames();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy