Package org.apache.geode.cache
Class ResumptionAction
java.lang.Object
org.apache.geode.cache.ResumptionAction
- All Implemented Interfaces:
Serializable
Deprecated.
this API is scheduled to be removed
Specifies how the region is affected by resumption of reliability when one or more missing
required roles return to the distributed membership. The
ResumptionAction is
specified when configuring a region's MembershipAttributes.- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ResumptionActionDeprecated.No special action takes place when reliability resumes.final byteDeprecated.byte used as ordinal to represent this Scopestatic final ResumptionActionDeprecated.Resumption of reliability causes the region to be cleared of all data andreplicatedregions will do a new getInitialImage operation to repopulate the region.static final ListDeprecated.List of all ResumptionAction values -
Method Summary
Modifier and TypeMethodDescriptionstatic ResumptionActionDeprecated.Return the ResumptionAction specified by namestatic ResumptionActionfromOrdinal(byte ordinal) Deprecated.Return the ResumptionAction represented by specified ordinalbooleanisNone()Deprecated.Returns true if this isNONE.booleanDeprecated.Returns true if this isREINITIALIZE.toString()Deprecated.Returns a string representation for this resumption action.
-
Field Details
-
NONE
Deprecated.No special action takes place when reliability resumes. -
REINITIALIZE
Deprecated.Resumption of reliability causes the region to be cleared of all data andreplicatedregions will do a new getInitialImage operation to repopulate the region. Any existing references to this region become unusable in that any subsequent methods invoked on those references will throw aRegionReinitializedException. -
ordinal
public final byte ordinalDeprecated.byte used as ordinal to represent this Scope -
VALUES
Deprecated.List of all ResumptionAction values
-
-
Method Details
-
fromOrdinal
Deprecated.Return the ResumptionAction represented by specified ordinal- Parameters:
ordinal- the ordinal representation of a ResumptionAction- Returns:
- the ResumptionAction specified by name
-
fromName
Deprecated.Return the ResumptionAction specified by name- Parameters:
name- the name of the action- Returns:
- the ResumptionAction specified by name
-
isNone
public boolean isNone()Deprecated.Returns true if this isNONE.- Returns:
- whether this is
NONE
-
isReinitialize
public boolean isReinitialize()Deprecated.Returns true if this isREINITIALIZE.- Returns:
- whether this is
REINITIALIZE
-
toString
Deprecated.Returns a string representation for this resumption action.
-