Class KeyValueFilterAsCacheEventFilter<K,V>

java.lang.Object
org.infinispan.notifications.cachelistener.filter.KeyValueFilterAsCacheEventFilter<K,V>
All Implemented Interfaces:
CacheEventFilter<K,V>

public class KeyValueFilterAsCacheEventFilter<K,V> extends Object implements CacheEventFilter<K,V>
CacheEventFilter that implements it's filtering solely on the use of the provided KeyValueFilter
Since:
7.0
Author:
wburns
  • Constructor Details

    • KeyValueFilterAsCacheEventFilter

      public KeyValueFilterAsCacheEventFilter(KeyValueFilter<? super K,? super V> filter)
  • Method Details

    • accept

      public boolean accept(K key, V oldValue, Metadata oldMetadata, V newValue, Metadata newMetadata, EventType eventType)
      Description copied from interface: CacheEventFilter
      Whether or not this event should be raised to the listener it is attached to.
      Specified by:
      accept in interface CacheEventFilter<K,V>
      Parameters:
      key - The key for the entry that was changed for the event
      oldValue - The previous value before the event takes place
      oldMetadata - The old value before the event takes place
      newValue - The new value for the entry after the event takes place
      newMetadata - The new metadata for the entry after the event takes place
      eventType - The type of event that is being raised
      Returns:
      Whether or not to notify the listener
    • injectDependencies

      protected void injectDependencies(ComponentRegistry cr)