- All Implemented Interfaces:
com.erudika.para.core.listeners.InitializeListener
,Serializable
,Comparable<HealthUtils>
,Constable
,Runnable
,EventListener
public enum HealthUtils
extends Enum<HealthUtils>
implements com.erudika.para.core.listeners.InitializeListener, Runnable
A utility for evaluating the health of the Para cluster.
- Author:
- Jeremy Wiesner [[email protected]]
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic HealthUtils
Provides access to the singleton instance methods.abstract boolean
A method to query the general health of the Para server.abstract void
Evaluate the health of the Para server by querying the root app object from the database, search and cache.static HealthUtils
Returns the enum constant of this class with the specified name.static HealthUtils[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
Methods inherited from interface com.erudika.para.core.listeners.InitializeListener
onInitialize
-
Enum Constant Details
-
INSTANCE
Singleton.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getInstance
Provides access to the singleton instance methods.- Returns:
- an instance of this class
-
isHealthy
public abstract boolean isHealthy()A method to query the general health of the Para server.- Returns:
- true if server is healthy
-
performHealthCheck
public abstract void performHealthCheck()Evaluate the health of the Para server by querying the root app object from the database, search and cache.
-