Gemfire JavaDocs_test
Package org.apache.geode.cache
Interface EvictionAttributesMutator
-
public interface EvictionAttributesMutator
The EvictionAttributesMutator allows changes to be made to aEvictionAttributes
. It is returned byAttributesMutator.getEvictionAttributesMutator()
- Since:
- GemFire 5.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setMaximum(int maximum)
Sets the maximum value on theEvictionAttributesImpl
that the givenEvictionAlgorithm
uses to determine when to perform itsEvictionAction
.
-
-
-
Method Detail
-
setMaximum
void setMaximum(int maximum)
Sets the maximum value on theEvictionAttributesImpl
that the givenEvictionAlgorithm
uses to determine when to perform itsEvictionAction
. The unit of the maximum value is determined by theEvictionAlgorithm
- Parameters:
maximum
- value used by theEvictionAlgorithm
-
-