org.infinispan.health.CacheHealth Maven / Gradle / Ivy
package org.infinispan.health;
/**
* Cache health information.
*
* @author Sebastian Łaskawiec
* @since 9.0
*/
public interface CacheHealth {
/**
* Returns Cache name.
*/
String getCacheName();
/**
* Returns Cache health status.
*/
HealthStatus getStatus();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy