Interface CacheEntryEventFilter<K,V>

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

public interface CacheEntryEventFilter<K,V>
A function that may be used to check CacheEntryEvents prior to being dispatched to CacheEntryListeners.

A filter must not create side effects.

Since:
1.0
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    evaluate(CacheEntryEvent<? extends K,? extends V> event)
    Evaluates specified CacheEntryEvent.