Class RemovedFilter<K,​V>

    • Constructor Summary

      Constructors 
      Constructor Description
      RemovedFilter()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean accept​(java.lang.Object key, java.lang.Object oldValue, Metadata oldMetadata, java.lang.Object newValue, Metadata newMetadata, EventType eventType)
      Whether or not this event should be raised to the listener it is attached to.
      MediaType format()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • RemovedFilter

        public RemovedFilter()
    • Method Detail

      • accept

        public boolean accept​(java.lang.Object key,
                              java.lang.Object oldValue,
                              Metadata oldMetadata,
                              java.lang.Object 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
      • format

        public MediaType format()
        Specified by:
        format in interface CacheEventFilter<K,​V>
        Returns:
        The desired data format to be used in the accept operation. If null, the filter will receive data as it's stored.