Package com.tangosol.net.cache
Interface IterableCacheLoader<K,V>
-
- All Superinterfaces:
CacheLoader<K,V>
- All Known Implementing Classes:
BinaryStoreCacheStore
,CacheLoaderCacheStore.Iterable
,MapCacheStore
public interface IterableCacheLoader<K,V> extends CacheLoader<K,V>
A JCache CacheLoader that can iterate its underlying contents.- Since:
- Coherence 2.5
- Author:
- cp 2004.09.22
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Iterator<K>
keys()
Iterate all keys in the underlying store.-
Methods inherited from interface com.tangosol.net.cache.CacheLoader
load, loadAll
-
-
-
-
Method Detail
-
keys
Iterator<K> keys()
Iterate all keys in the underlying store.- Returns:
- a read-only iterator of the keys in the underlying store
- Throws:
UnsupportedOperationException
- if the underlying store is not iterable
-
-