org.infinispan.client.hotrod.event.ClientCacheEntryExpiredEvent Maven / Gradle / Ivy
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();
}