Package org.infinispan.distribution
Interface RemoteValueRetrievedListener
-
public interface RemoteValueRetrievedListener
Listener that is notified when a remote value is looked up- Since:
- 6.0
- Author:
- William Burns
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
remoteValueFound(org.infinispan.container.entries.InternalCacheEntry ice)
Invoked when a remote value is found from a remote sourcevoid
remoteValueNotFound(Object key)
Invoked when a remote value is not found from the remote source for the given key
-
-
-
Method Detail
-
remoteValueFound
void remoteValueFound(org.infinispan.container.entries.InternalCacheEntry ice)
Invoked when a remote value is found from a remote source- Parameters:
ice
- The cache entry that was found
-
remoteValueNotFound
void remoteValueNotFound(Object key)
Invoked when a remote value is not found from the remote source for the given key- Parameters:
key
- The key for which there was no value found
-
-