Package org.infinispan.persistence.spi
Interface CacheLoader<K,V>
- 
- All Superinterfaces:
- Lifecycle
 - All Known Subinterfaces:
- AdvancedCacheLoader<K,V>,- AdvancedLoadWriteStore<K,V>,- ExternalStore<K,V>,- FlagAffectedStore<K,V>,- SegmentedAdvancedLoadWriteStore<K,V>
 - All Known Implementing Classes:
- ClusterLoader,- JdbcStringBasedStore,- JpaStore,- RemoteStore,- RestStore,- RocksDBStore,- SingleFileStore,- SoftIndexFileStore
 
 @ThreadSafe public interface CacheLoader<K,V> extends Lifecycle Defines the logic for loading data from an external storage. The writing of data is optional and coordinated through aCacheWriter.- Since:
- 6.0
- Author:
- Mircea Markus
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description booleancontains(Object key)Returns true if the storage contains an entry associated with the given key.voidinit(InitializationContext ctx)Used to initialize a cache loader.default booleanisAvailable()default org.infinispan.marshall.core.MarshalledEntry<K,V>load(Object key)Deprecated.since 10.0 please implement {loadEntry(Object)} insteaddefault MarshallableEntry<K,V>loadEntry(Object key)Fetches an entry from the storage.
 
- 
- 
- 
Method Detail- 
initvoid init(InitializationContext ctx) Used to initialize a cache loader. Typically invoked by thePersistenceManagerwhen setting up cache loaders.- Throws:
- PersistenceException- in case of an error, e.g. communicating with the external storage
 
 - 
load@Deprecated default org.infinispan.marshall.core.MarshalledEntry<K,V> load(Object key) Deprecated.since 10.0 please implement {loadEntry(Object)} insteadFetches an entry from the storage. If aMarshalledEntryneeds to be created here,InitializationContext.getMarshalledEntryFactory()andInitializationContext.getByteBufferFactory()should be used.- Returns:
- the entry, or null if the entry does not exist
- Throws:
- PersistenceException- in case of an error, e.g. communicating with the external storage
 
 - 
loadEntrydefault MarshallableEntry<K,V> loadEntry(Object key) Fetches an entry from the storage. If aMarshallableEntryneeds to be created here,InitializationContext.getMarshallableEntryFactory()()} andInitializationContext.getByteBufferFactory()should be used.- Returns:
- the entry, or null if the entry does not exist
- Throws:
- PersistenceException- in case of an error, e.g. communicating with the external storage
 
 - 
containsboolean contains(Object key) Returns true if the storage contains an entry associated with the given key.- Throws:
- PersistenceException- in case of an error, e.g. communicating with the external storage
 
 - 
isAvailabledefault boolean isAvailable() - Returns:
- true if the writer can be connected to, otherwise false
 
 
- 
 
-