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

org.infinispan.client.hotrod.event.ClientCacheEntryExpiredEvent Maven / Gradle / Ivy

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

/**
 * Client side cache entry expired events provide information on the expired key.
 *
 * @param  type of key expired.
 */
public interface ClientCacheEntryExpiredEvent extends ClientEvent {

   /**
    * Created cache entry's key.
    * @return an instance of the key with which a cache entry has been
    * created in remote server.
    */
   K getKey();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy