Interface CacheEntryEraseHandler<K,V>

Type Parameters:
K - the key type.
V - the value type.

public interface CacheEntryEraseHandler<K,V>
Callback that removes the provided object from a backing store.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    erase(K key)
    Remove the provided object based on the key from a backing store.
  • Method Details

    • erase

      void erase(K key)
      Remove the provided object based on the key from a backing store.
      Parameters:
      key - the key.