Package com.hazelcast.config
Enum Class PersistenceClusterDataRecoveryPolicy
java.lang.Object
java.lang.Enum<PersistenceClusterDataRecoveryPolicy>
com.hazelcast.config.PersistenceClusterDataRecoveryPolicy
- All Implemented Interfaces:
Serializable
,Comparable<PersistenceClusterDataRecoveryPolicy>
,Constable
Specifies the policy that will be respected during persistence cluster start
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionStarts the cluster only when all expected nodes are present and correct.Starts the cluster with the largest group of members which have the same partition table version and successfully restored their data.Starts the cluster with the members which have most up-to-date partition table and successfully restored their data. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static PersistenceClusterDataRecoveryPolicy[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FULL_RECOVERY_ONLY
Starts the cluster only when all expected nodes are present and correct. Otherwise, it fails. -
PARTIAL_RECOVERY_MOST_RECENT
Starts the cluster with the members which have most up-to-date partition table and successfully restored their data. All other members will leave the cluster and force-start themselves. If no member restores its data successfully, cluster start fails. -
PARTIAL_RECOVERY_MOST_COMPLETE
Starts the cluster with the largest group of members which have the same partition table version and successfully restored their data. All other members will leave the cluster and force-start themselves. If no member restores its data successfully, cluster start fails.
-
-
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
-