Uses of Interface
org.infinispan.persistence.spi.CacheWriter
-
Packages that use CacheWriter Package Description 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 -
-
Uses of CacheWriter in org.infinispan.persistence.async
Classes in org.infinispan.persistence.async that implement CacheWriter Modifier and Type Class Description class
AdvancedAsyncCacheWriter
class
AsyncCacheWriter
The AsyncCacheWriter is a delegating CacheStore that buffers changes and writes them asynchronously to the underlying CacheStore.Constructors in org.infinispan.persistence.async with parameters of type CacheWriter Constructor Description AdvancedAsyncCacheWriter(CacheWriter delegate)
AsyncCacheWriter(CacheWriter delegate)
-
Uses of CacheWriter in org.infinispan.persistence.file
Classes in org.infinispan.persistence.file that implement CacheWriter Modifier and Type Class Description class
SingleFileStore<K,V>
A filesystem-based implementation of aAdvancedLoadWriteStore
. -
Uses of CacheWriter in org.infinispan.persistence.manager
Methods in org.infinispan.persistence.manager that return types with arguments of type CacheWriter Modifier and Type Method Description List<CacheWriter>
PersistenceManagerImpl. getAllTxWriters()
List<CacheWriter>
PersistenceManagerImpl. getAllWriters()
Methods in org.infinispan.persistence.manager with parameters of type CacheWriter Modifier and Type Method Description protected AsyncCacheWriter
PersistenceManagerImpl. createAsyncWriter(CacheWriter writer)
-
Uses of CacheWriter in org.infinispan.persistence.spi
Subinterfaces of CacheWriter in org.infinispan.persistence.spi Modifier and Type Interface Description interface
AdvancedCacheExpirationWriter<K,V>
Defines functionality for advanced expiration techniques.interface
AdvancedCacheWriter<K,V>
Defines advanced functionality for persisting data to an external storage.interface
AdvancedLoadWriteStore<K,V>
Advanced interface for interacting with an external store in a read-write mode.interface
ExternalStore<K,V>
Basic interface for interacting with an external store in a read-write mode.interface
FlagAffectedStore<K,V>
Implemented by stores that can skip writes based on certain flags present in the invocation.interface
TransactionalCacheWriter<K,V>
Defines the functionality of a transactional store. -
Uses of CacheWriter in org.infinispan.persistence.support
Classes in org.infinispan.persistence.support that implement CacheWriter Modifier and Type Class Description class
AdvancedSingletonCacheWriter
Deprecated.this writer will be removed in 10.0.class
DelegatingCacheWriter
class
SingletonCacheWriter
Deprecated.this writer will be removed in 10.0.Fields in org.infinispan.persistence.support declared as CacheWriter Modifier and Type Field Description protected CacheWriter
DelegatingCacheWriter. actual
Methods in org.infinispan.persistence.support that return CacheWriter Modifier and Type Method Description CacheWriter
DelegatingCacheWriter. undelegate()
Constructors in org.infinispan.persistence.support with parameters of type CacheWriter Constructor Description AdvancedSingletonCacheWriter(CacheWriter actual, SingletonStoreConfiguration singletonConfiguration)
Deprecated.DelegatingCacheWriter(CacheWriter actual)
SingletonCacheWriter(CacheWriter actual, SingletonStoreConfiguration singletonConfiguration)
Deprecated.
-