Interface CacheKeyFilter<K>

Type Parameters:
K - The key type for this filter

public interface CacheKeyFilter<K>
This is used by the cache to remove a series of entries that match this filter
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    matches(K key)
    Returns true if the key matches the filter
  • Method Details

    • matches

      boolean matches(K key)
      Returns true if the key matches the filter
      Parameters:
      key - The key from the cache to filter
      Returns:
      true if the key matches, false otherwise