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

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

There is a newer version: 15.1.0.Dev04
Show newest version
package org.infinispan.health;

import java.util.List;

import org.infinispan.commons.dataconversion.internal.JsonSerialization;

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

   /**
    * 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