| Interface | Description |
|---|---|
| AdvancedCacheLoader<K,V> |
A specialised extension of the
CacheLoader interface that allows processing parallel iteration over the
existing entries. |
| AdvancedCacheLoader.CacheLoaderTask<K,V> |
Offers a callback to be invoked for parallel iteration over the entries in an external store.
|
| AdvancedCacheLoader.TaskContext |
Used during the parallel iteration in order to offer the
AdvancedCacheLoader.CacheLoaderTask a way of canceling the entry
iteration. |
| AdvancedCacheWriter<K,V> |
Defines advanced functionality for persisting data to an external storage.
|
| AdvancedCacheWriter.PurgeListener<K> |
Callback to be notified when an entry is removed by the
AdvancedCacheWriter.purge(java.util.concurrent.Executor,
org.infinispan.persistence.spi.AdvancedCacheWriter.PurgeListener) method. |
| AdvancedLoadWriteStore<K,V> |
Advanced interface for interacting with an external store in a read-write mode.
|
| CacheLoader<K,V> |
Defines the logic for loading data from an external storage.
|
| CacheWriter<K,V> |
Allows persisting data to an external storage, as opposed to the
CacheLoader. |
| ExternalStore<K,V> |
Basic interface for interacting with an external store in a read-write mode.
|
| InitializationContext |
Aggregates the initialisation state needed by either a
CacheLoader or a CacheWriter. |
| LocalOnlyCacheLoader |
Marker interface for cache loaders that should only load values on the originating nodes.
|
| Exception | Description |
|---|---|
| PersistenceException |
An exception thrown by a
CacheLoader or a CacheWriter implementation if there are problems
reading from a loader. |
Copyright © 2015 JBoss, a division of Red Hat. All rights reserved.