| Interface | Description |
|---|---|
| AdvancedCacheExpirationWriter<K,V> |
Defines functionality for advanced expiration techniques.
|
| AdvancedCacheExpirationWriter.ExpirationPurgeListener<K,V> |
Callback to be notified when an entry is removed by the
AdvancedCacheExpirationWriter.purge(Executor, ExpirationPurgeListener) method. |
| 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.
|
| FlagAffectedStore<K,V> |
Implemented by stores that can skip writes based on certain flags present in the invocation.
|
| 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.
|
| TransactionalCacheWriter<K,V> |
Defines the functionality of a transactional store.
|
| Exception | Description |
|---|---|
| PersistenceException |
An exception thrown by a
CacheLoader or a CacheWriter implementation if there are problems
reading from a loader. |
Copyright © 2018 JBoss, a division of Red Hat. All rights reserved.