All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.notifications.cachelistener.event.CacheEntryVisitedEvent Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.notifications.cachelistener.event;

/**
 * This event subtype is passed in to any method annotated with {@link org.infinispan.notifications.cachelistener.annotation.CacheEntryVisited}.
 *
 * @author Manik Surtani
 * @since 4.0
 */
public interface CacheEntryVisitedEvent extends CacheEntryEvent {
   /**
    * Retrieves the value of the entry being visited.
    *
    * @return the value of the visited entry
    */
   V getValue();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy