Package | Description |
---|---|
org.infinispan.persistence.file |
Simple filesystem-based
CacheWriter implementation. |
org.infinispan.persistence.jdbc.binary |
This JDBC CacheStore implementation is optimized for storing binary (non-String)
keys in the cache.
|
org.infinispan.persistence.jdbc.mixed |
This is a delegating CacheStore implementation that delegates either to a binary
or String based JDBC cache store depending on the key used.
|
org.infinispan.persistence.jdbc.stringbased |
This JDBC CacheStore implementation is optimized for storing String
keys in the cache.
|
org.infinispan.persistence.jpa |
JPA-based
AdvancedLoadWriteStore |
org.infinispan.persistence.remote |
HotRod-based
AdvancedLoadWriteStore |
org.infinispan.persistence.rest |
RESTful
AdvancedLoadWriteStore |
org.infinispan.persistence.spi |
The Persistence SPI
|
Modifier and Type | Method and Description |
---|---|
void |
SingleFileStore.purge(Executor threadPool,
AdvancedCacheWriter.PurgeListener task) |
Modifier and Type | Method and Description |
---|---|
void |
JdbcBinaryStore.purge(Executor threadPool,
AdvancedCacheWriter.PurgeListener task) |
Modifier and Type | Method and Description |
---|---|
void |
JdbcMixedStore.purge(Executor threadPool,
AdvancedCacheWriter.PurgeListener task) |
Modifier and Type | Method and Description |
---|---|
void |
JdbcStringBasedStore.purge(Executor executor,
AdvancedCacheWriter.PurgeListener task) |
Modifier and Type | Method and Description |
---|---|
void |
JpaStore.purge(Executor threadPool,
AdvancedCacheWriter.PurgeListener listener) |
Modifier and Type | Method and Description |
---|---|
void |
RemoteStore.purge(Executor threadPool,
AdvancedCacheWriter.PurgeListener task) |
Modifier and Type | Method and Description |
---|---|
void |
RestStore.purge(Executor executor,
AdvancedCacheWriter.PurgeListener purgeListener) |
Modifier and Type | Interface and Description |
---|---|
static interface |
AdvancedCacheExpirationWriter.ExpirationPurgeListener<K,V>
Callback to be notified when an entry is removed by the
AdvancedCacheExpirationWriter.purge(Executor, ExpirationPurgeListener) method. |
Modifier and Type | Method and Description |
---|---|
void |
AdvancedCacheWriter.purge(Executor threadPool,
AdvancedCacheWriter.PurgeListener<? super K> listener)
Using the thread in the pool, removed all the expired data from the persistence storage.
|
Copyright © 2015 JBoss, a division of Red Hat. All rights reserved.