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
Modifier and TypeMethodDescriptionvoid
remoteValueFound
(org.infinispan.container.entries.InternalCacheEntry ice) Invoked when a remote value is found from a remote sourcevoid
Invoked when a remote value is not found from the remote source for the given key
-
Method Details
-
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
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
-