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

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

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

/**
 * General Health status.
 *
 * @author Sebastian Łaskawiec
 * @since 9.0
 */
public enum HealthStatus {
   /**
    * Given entity is unhealthy.
    *
    * 

* An unhealthy status means that a cache is in {@link org.infinispan.partitionhandling.AvailabilityMode#DEGRADED_MODE}. * Please keep in mind that in the future additional rules might be added to reflect Unhealthy status of the cache. *

. */ DEGRADED, /** * Given entity is healthy. */ HEALTHY, /** * The given entity is still initializing. * *

This can happen when the entity does not have the time to completely initialize or when it is recovering after a cluster shutdown.

*/ INITIALIZING, /** * Given entity is healthy but a rebalance is in progress. */ HEALTHY_REBALANCING, /** * The cache did not start due to a error. */ FAILED }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy