ExpirationAction Enumeration |
Note: This API is now obsolete.
Enumerated type for expiration (LRU) actions.
Contains values for setting an action type.
Namespace: GemStone.GemFire.CacheAssembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntax[ObsoleteAttribute("Use classes and APIs from the GemStone.GemFire.Cache.Generic namespace")]
public enum ExpirationAction
<ObsoleteAttribute("Use classes and APIs from the GemStone.GemFire.Cache.Generic namespace")>
Public Enumeration ExpirationAction
[ObsoleteAttribute(L"Use classes and APIs from the GemStone.GemFire.Cache.Generic namespace")]
public enum class ExpirationAction
[<ObsoleteAttribute("Use classes and APIs from the GemStone.GemFire.Cache.Generic namespace")>]
type ExpirationAction
Members
| Member name | Value | Description |
---|
| Invalidate | 0 |
When the region or cached object expires, it is invalidated.
|
| LocalInvalidate | 1 |
When expired, invalidated locally only.
|
| Destroy | 2 |
When the region or cached object expires, it is destroyed.
|
| LocalDestroy | 3 |
When expired, destroyed locally only.
|
| InvalidAction | 4 | Invalid action type. |
See Also