Interface EntryExpiredListener<K,​V>

Type Parameters:
K - the type of key.
V - the type of value.
All Superinterfaces:
EventListener, MapListener
All Known Subinterfaces:
EntryListener<K,​V>
All Known Implementing Classes:
ClientConsoleApp, ConsoleApp, EntryAdapter
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface
public interface EntryExpiredListener<K,​V>
extends MapListener
Listener which is notified after removal of an entry due to the expiration-based-eviction. There are two sources of expiration based eviction, they are max-idle-seconds and time-to-live-seconds. Note that if your listener implements both EntryExpiredListener and EntryEvictedListener together, there is a probability that the listener may receive both expiration and eviction events for the same entry. This is because, size-based-eviction removes entries regardless of whether entries expired or not.
Since:
3.6
See Also:
EntryEvictedListener
  • Method Summary

    Modifier and Type Method Description
    void entryExpired​(EntryEvent<K,​V> event)
    Invoked upon expiration of an entry.
  • Method Details

    • entryExpired

      void entryExpired​(EntryEvent<K,​V> event)
      Invoked upon expiration of an entry.
      Parameters:
      event - the event invoked when an entry is expired.