Uses of Interface
org.infinispan.persistence.spi.AdvancedCacheLoader
-
Packages that use AdvancedCacheLoader Package Description org.infinispan.persistence Persistence API.org.infinispan.persistence.async org.infinispan.persistence.file Simple filesystem-basedCacheWriter
implementation.org.infinispan.persistence.manager Implementations of thePersistenceManager
interface, which define the logic of how infinispan interacts with external stores.org.infinispan.persistence.spi The Persistence SPI.org.infinispan.persistence.support org.infinispan.persistence.util -
-
Uses of AdvancedCacheLoader in org.infinispan.persistence
Methods in org.infinispan.persistence with parameters of type AdvancedCacheLoader Modifier and Type Method Description static <K,V>
intPersistenceUtil. count(AdvancedCacheLoader<K,V> acl, Predicate<? super K> filter)
static <K,V>
intPersistenceUtil. count(AdvancedCacheLoader<K,V> acl, KeyFilter<? super K> filter)
Deprecated.Please usePersistenceUtil.count(AdvancedCacheLoader, Predicate)
insteadstatic <K,V>
Set<InternalCacheEntry<K,V>>PersistenceUtil. toEntrySet(AdvancedCacheLoader<K,V> acl, Predicate<? super K> filter, InternalEntryFactory ief)
static <K,V>
Set<InternalCacheEntry>PersistenceUtil. toEntrySet(AdvancedCacheLoader<K,V> acl, KeyFilter<? super K> filter, InternalEntryFactory ief)
Deprecated.static <K,V>
Set<K>PersistenceUtil. toKeySet(AdvancedCacheLoader<K,V> acl, Predicate<? super K> filter)
static <K,V>
Set<K>PersistenceUtil. toKeySet(AdvancedCacheLoader<K,V> acl, KeyFilter<? super K> filter)
Deprecated.Please usePersistenceUtil.toKeySet(AdvancedCacheLoader, Predicate)
instead -
Uses of AdvancedCacheLoader in org.infinispan.persistence.async
Classes in org.infinispan.persistence.async that implement AdvancedCacheLoader Modifier and Type Class Description class
AdvancedAsyncCacheLoader<K,V>
-
Uses of AdvancedCacheLoader in org.infinispan.persistence.file
Classes in org.infinispan.persistence.file that implement AdvancedCacheLoader Modifier and Type Class Description class
SingleFileStore<K,V>
A filesystem-based implementation of aAdvancedLoadWriteStore
. -
Uses of AdvancedCacheLoader in org.infinispan.persistence.manager
Methods in org.infinispan.persistence.manager that return AdvancedCacheLoader Modifier and Type Method Description AdvancedCacheLoader
PersistenceManager. getStateTransferProvider()
Returns the store one configured with fetch persistent state, or null if none exist.AdvancedCacheLoader
PersistenceManagerImpl. getStateTransferProvider()
AdvancedCacheLoader
PersistenceManagerStub. getStateTransferProvider()
-
Uses of AdvancedCacheLoader in org.infinispan.persistence.spi
Subinterfaces of AdvancedCacheLoader in org.infinispan.persistence.spi Modifier and Type Interface Description interface
AdvancedLoadWriteStore<K,V>
Advanced interface for interacting with an external store in a read-write mode.interface
SegmentedAdvancedLoadWriteStore<K,V>
An interface implementing bothAdvancedCacheWriter
andAdvancedCacheLoader
as well as overrides of those methods that can be optimized when a segment is already known for the key or a subset of segments are to be used instead of the entire store. -
Uses of AdvancedCacheLoader in org.infinispan.persistence.support
Classes in org.infinispan.persistence.support that implement AdvancedCacheLoader Modifier and Type Class Description class
AbstractSegmentedAdvancedLoadWriteStore<K,V>
Abstract segment loader writer that implements all the single key non segmented methods by invoking the segmented equivalent by passing in the segment returned from invokingAbstractSegmentedAdvancedLoadWriteStore.getKeyMapper()
.class
ComposedSegmentedLoadWriteStore<K,V,T extends AbstractSegmentedStoreConfiguration>
Segmented store that creates multiple inner stores for each segment. -
Uses of AdvancedCacheLoader in org.infinispan.persistence.util
Constructors in org.infinispan.persistence.util with parameters of type AdvancedCacheLoader Constructor Description PersistenceManagerCloseableSupplier(Executor executor, AdvancedCacheLoader<K,V> loader, Predicate<? super K> filter, boolean fetchValue, boolean fetchMetadata, long timeout, TimeUnit unit, int maxQueue)
Deprecated.
-