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

. */ UNHEALTHY, /** * Given entity is healthy. */ HEALTHY, /** * Given entity is healthy but a rebalance is in progress. */ REBALANCING }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy