Click or drag to resize

IEvictionPolicy Interface

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
An eviction policy is an object that the cache provides with access information, and when requested, the eviction policy selects and evicts entries from the cache.

Namespace:  Tangosol.Net.Cache
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public interface IEvictionPolicy

The IEvictionPolicy type exposes the following members.

Properties
  NameDescription
Public propertyName
Obtain the name of the eviction policy.
Top
Methods
  NameDescription
Public methodEntryTouched
This method is called by the cache to indicate that an entry has been touched.
Public methodRequestEviction
This method is called by the cache when the cache requires the eviction policy to evict entries.
Top
Remarks
If the eviction policy needs to be aware of changes to the cache, it must implement the ICacheListener interface; if it does, it will automatically be registered to receive cache events.
See Also