Interface EvictionListener<K,V>


@Deprecated public interface EvictionListener<K,V>
Deprecated.
since 10.0 - This class is not used internally anymore
Eviction listener that is notified when entries are evicted from the underlying container due to the given eviction policy.
Since:
9.0
Author:
wburns
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Deprecated.
    Called back when an entry has been activated
    void
    Deprecated.
    Called back before an entry is evicted
    void
    onEntryEviction(Map<K,V> evicted)
    Deprecated.
    Called back after entries have been evicted
    void
    Deprecated.
    Called when an entry is specifically removed from the container.
  • Method Details

    • onEntryEviction

      void onEntryEviction(Map<K,V> evicted)
      Deprecated.
      Called back after entries have been evicted
      Parameters:
      evicted -
    • onEntryChosenForEviction

      void onEntryChosenForEviction(Map.Entry<K,V> entry)
      Deprecated.
      Called back before an entry is evicted
      Parameters:
      entry -
    • onEntryActivated

      void onEntryActivated(Object key)
      Deprecated.
      Called back when an entry has been activated
      Parameters:
      key -
    • onEntryRemoved

      void onEntryRemoved(Map.Entry<K,V> entry)
      Deprecated.
      Called when an entry is specifically removed from the container.
      Parameters:
      entry -