Class CallableCacheLoaderAdapter<K,V>

java.lang.Object
org.springframework.data.gemfire.cache.CallableCacheLoaderAdapter<K,V>
All Implemented Interfaces:
Callable<V>, CacheCallback, CacheLoader<K,V>, Declarable

public class CallableCacheLoaderAdapter<K,V> extends Object implements Callable<V>, CacheLoader<K,V>
The CallableCacheLoaderAdapter class is a Callable and GemFire CacheLoader implementation that adapts the Callable interface into an instance of the CacheLoader interface. This class is useful in situations where GemFire developers have several CacheLoader implementations that they wish to use with Spring's Cache Abstraction.
Since:
1.9.0
Author:
John Blum
See Also: