Package | Description |
---|---|
org.infinispan.cache.impl | |
org.infinispan.container |
Data containers which store cache entries.
|
org.infinispan.distribution.group |
Groups allow keys with differeing hash codes to be co-located on the same node.
|
org.infinispan.filter |
Provides capabilities around filtering and converting entries that are found in the cache or cache store/loader.
|
org.infinispan.lucene.cacheloader | |
org.infinispan.notifications |
Notifications and eventing for listeners on both the Cache and CacheManager interfaces.
|
org.infinispan.notifications.cachelistener |
Cache -specific notifications and eventing. |
org.infinispan.notifications.cachelistener.filter |
Cache -specific notifications and eventing filtering classes. |
org.infinispan.persistence |
This package contains stores, which are used for overflow or persistence.
|
org.infinispan.persistence.async | |
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.leveldb |
LevelDB-based
AdvancedLoadWriteStore |
org.infinispan.persistence.manager | |
org.infinispan.persistence.remote |
HotRod-based
AdvancedLoadWriteStore |
org.infinispan.persistence.sifs | |
org.infinispan.persistence.spi |
The Persistence SPI
|
org.infinispan.persistence.support | |
org.infinispan.persistence.util | |
org.infinispan.registry |
The internal cache registry API
|
org.infinispan.registry.impl | |
org.infinispan.security.impl |
Modifier and Type | Method and Description |
---|---|
void |
AbstractDelegatingCache.addListener(Object listener,
KeyFilter<? super K> filter) |
void |
CacheImpl.addListener(Object listener,
KeyFilter<? super K> filter) |
void |
SimpleCacheImpl.addListener(Object listener,
KeyFilter<? super K> filter) |
void |
DecoratedCache.addListener(Object listener,
KeyFilter<? super K> filter) |
Modifier and Type | Method and Description |
---|---|
void |
DefaultDataContainer.executeTask(KeyFilter<? super K> filter,
BiConsumer<? super K,InternalCacheEntry<K,V>> action) |
void |
DataContainer.executeTask(KeyFilter<? super K> filter,
BiConsumer<? super K,InternalCacheEntry<K,V>> action)
Executes task specified by the given action on the container key/values filtered using the specified key filter.
|
Modifier and Type | Class and Description |
---|---|
class |
GroupFilter<K>
A key filter that accepts keys which belongs to the group.
|
Modifier and Type | Class and Description |
---|---|
class |
CollectionKeyFilter<K>
Filter based on accepting/rejecting the keys that are present in a supplied collection.
|
class |
CompositeKeyFilter<K>
Allows AND-composing several filters.
|
class |
KeyValueFilterAsKeyFilter<K>
This is a KeyFilter that utilizes the given
KeyValueFilter to determine if to
filter the key. |
Modifier and Type | Field and Description |
---|---|
static KeyFilter |
KeyFilter.ACCEPT_ALL_FILTER |
Constructor and Description |
---|
CompositeKeyFilter(KeyFilter<? super K>... filters) |
KeyFilterAsKeyValueFilter(KeyFilter<? super K> filter) |
Modifier and Type | Method and Description |
---|---|
void |
LuceneCacheLoader.process(KeyFilter filter,
AdvancedCacheLoader.CacheLoaderTask task,
Executor executor,
boolean fetchValue,
boolean fetchMetadata) |
Modifier and Type | Method and Description |
---|---|
void |
FilteringListenable.addListener(Object listener,
KeyFilter<? super K> filter)
Adds a listener to the component.
|
void |
ClassLoaderAwareFilteringListenable.addListener(Object listener,
KeyFilter<? super K> filter,
ClassLoader classLoader)
Adds a listener to the component.
|
Modifier and Type | Method and Description |
---|---|
void |
CacheNotifierImpl.addListener(Object listener,
KeyFilter<? super K> filter) |
void |
CacheNotifierImpl.addListener(Object listener,
KeyFilter<? super K> filter,
ClassLoader classLoader) |
Constructor and Description |
---|
KeyFilterAsCacheEventFilter(KeyFilter<? super K> filter) |
Modifier and Type | Class and Description |
---|---|
class |
PrimaryOwnerFilter<K> |
Modifier and Type | Method and Description |
---|---|
static KeyFilter |
PersistenceUtil.notNull(KeyFilter filter) |
Modifier and Type | Method and Description |
---|---|
static <K,V> int |
PersistenceUtil.count(AdvancedCacheLoader<K,V> acl,
KeyFilter<? super K> filter) |
static KeyFilter |
PersistenceUtil.notNull(KeyFilter filter) |
static <K,V> Set<InternalCacheEntry> |
PersistenceUtil.toEntrySet(AdvancedCacheLoader<K,V> acl,
KeyFilter<? super K> filter,
InternalEntryFactory ief) |
static <K,V> Set<K> |
PersistenceUtil.toKeySet(AdvancedCacheLoader<K,V> acl,
KeyFilter<? super K> filter) |
Modifier and Type | Method and Description |
---|---|
void |
AdvancedAsyncCacheLoader.process(KeyFilter keyFilter,
AdvancedCacheLoader.CacheLoaderTask cacheLoaderTask,
Executor executor,
boolean loadValues,
boolean loadMetadata) |
Modifier and Type | Method and Description |
---|---|
void |
SingleFileStore.process(KeyFilter<? super K> filter,
AdvancedCacheLoader.CacheLoaderTask<K,V> task,
Executor executor,
boolean fetchValue,
boolean fetchMetadata) |
Modifier and Type | Method and Description |
---|---|
void |
JdbcBinaryStore.process(KeyFilter filter,
AdvancedCacheLoader.CacheLoaderTask task,
Executor executor,
boolean fetchValue,
boolean fetchMetadata) |
Modifier and Type | Method and Description |
---|---|
void |
JdbcMixedStore.process(KeyFilter filter,
AdvancedCacheLoader.CacheLoaderTask task,
Executor executor,
boolean fetchValue,
boolean fetchMetadata) |
Modifier and Type | Method and Description |
---|---|
void |
JdbcStringBasedStore.process(KeyFilter filter,
AdvancedCacheLoader.CacheLoaderTask task,
Executor executor,
boolean fetchValue,
boolean fetchMetadata) |
Modifier and Type | Method and Description |
---|---|
void |
JpaStore.process(KeyFilter filter,
AdvancedCacheLoader.CacheLoaderTask task,
Executor executor,
boolean fetchValue,
boolean fetchMetadata) |
Modifier and Type | Method and Description |
---|---|
void |
LevelDBStore.process(KeyFilter keyFilter,
AdvancedCacheLoader.CacheLoaderTask cacheLoaderTask,
Executor executor,
boolean loadValues,
boolean loadMetadata) |
Modifier and Type | Method and Description |
---|---|
void |
PersistenceManager.processOnAllStores(Executor executor,
KeyFilter keyFilter,
AdvancedCacheLoader.CacheLoaderTask task,
boolean fetchValue,
boolean fetchMetadata) |
void |
PersistenceManagerImpl.processOnAllStores(Executor executor,
KeyFilter keyFilter,
AdvancedCacheLoader.CacheLoaderTask task,
boolean fetchValue,
boolean fetchMetadata) |
void |
PersistenceManagerStub.processOnAllStores(Executor executor,
KeyFilter keyFilter,
AdvancedCacheLoader.CacheLoaderTask task,
boolean fetchValue,
boolean fetchMetadata) |
void |
PersistenceManager.processOnAllStores(Executor executor,
KeyFilter keyFilter,
AdvancedCacheLoader.CacheLoaderTask task,
boolean fetchValue,
boolean fetchMetadata,
PersistenceManager.AccessMode mode) |
void |
PersistenceManagerImpl.processOnAllStores(Executor executor,
KeyFilter keyFilter,
AdvancedCacheLoader.CacheLoaderTask task,
boolean fetchValue,
boolean fetchMetadata,
PersistenceManager.AccessMode mode) |
void |
PersistenceManagerStub.processOnAllStores(Executor executor,
KeyFilter keyFilter,
AdvancedCacheLoader.CacheLoaderTask task,
boolean fetchValue,
boolean fetchMetadata,
PersistenceManager.AccessMode mode) |
void |
PersistenceManager.processOnAllStores(KeyFilter keyFilter,
AdvancedCacheLoader.CacheLoaderTask task,
boolean fetchValue,
boolean fetchMetadata) |
void |
PersistenceManagerImpl.processOnAllStores(KeyFilter keyFilter,
AdvancedCacheLoader.CacheLoaderTask task,
boolean fetchValue,
boolean fetchMetadata) |
void |
PersistenceManagerStub.processOnAllStores(KeyFilter keyFilter,
AdvancedCacheLoader.CacheLoaderTask task,
boolean fetchValue,
boolean fetchMetadata) |
void |
PersistenceManager.processOnAllStores(KeyFilter keyFilter,
AdvancedCacheLoader.CacheLoaderTask task,
boolean fetchValue,
boolean fetchMetadata,
PersistenceManager.AccessMode mode) |
void |
PersistenceManagerImpl.processOnAllStores(KeyFilter keyFilter,
AdvancedCacheLoader.CacheLoaderTask task,
boolean fetchValue,
boolean fetchMetadata,
PersistenceManager.AccessMode mode) |
void |
PersistenceManagerStub.processOnAllStores(KeyFilter keyFilter,
AdvancedCacheLoader.CacheLoaderTask task,
boolean fetchValue,
boolean fetchMetadata,
PersistenceManager.AccessMode mode) |
Modifier and Type | Method and Description |
---|---|
void |
RemoteStore.process(KeyFilter filter,
AdvancedCacheLoader.CacheLoaderTask task,
Executor executor,
boolean fetchValue,
boolean fetchMetadata) |
Modifier and Type | Method and Description |
---|---|
void |
SoftIndexFileStore.process(KeyFilter filter,
AdvancedCacheLoader.CacheLoaderTask task,
Executor executor,
boolean fetchValue,
boolean fetchMetadata) |
Modifier and Type | Method and Description |
---|---|
void |
AdvancedCacheLoader.process(KeyFilter<? super K> filter,
AdvancedCacheLoader.CacheLoaderTask<K,V> task,
Executor executor,
boolean fetchValue,
boolean fetchMetadata)
Iterates in parallel over the entries in the storage using the threads from the executor pool.
|
Modifier and Type | Method and Description |
---|---|
Map<Object,MarshalledEntry> |
Bucket.getStoredEntries(KeyFilter filter,
TimeService timeService) |
Constructor and Description |
---|
PersistenceManagerCloseableSupplier(Executor executor,
PersistenceManager manager,
InternalEntryFactory factory,
KeyFilter<K> filter,
long timeout,
TimeUnit unit,
int maxQueue) |
Modifier and Type | Method and Description |
---|---|
void |
ClusterRegistry.addListener(S scope,
KeyFilter keyFilter,
Object listener)
Deprecated.
Adds a listener that is notified of changes to keys in a given scope and which match a given
KeyFilter . |
Modifier and Type | Method and Description |
---|---|
void |
ClusterRegistryImpl.addListener(S scope,
KeyFilter keyFilter,
Object listener)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
SecureCacheImpl.addListener(Object listener,
KeyFilter<? super K> filter) |
Copyright © 2024 JBoss, a division of Red Hat. All rights reserved.