Uses of Class
org.infinispan.persistence.spi.PersistenceException
-
Packages that use PersistenceException Package Description org.infinispan.eviction Classes related to eviction.org.infinispan.persistence.async org.infinispan.persistence.cluster ACacheLoader
(notCacheWriter
) that polls other nodes in the cluster for state.org.infinispan.persistence.jdbc.connectionfactory org.infinispan.persistence.jdbc.stringbased JDBC CacheStore implementation which maps keys to strings.org.infinispan.persistence.jpa JPA-basedAdvancedLoadWriteStore
.org.infinispan.persistence.keymappers org.infinispan.persistence.manager Implementations of thePersistenceManager
interface, which define the logic of how infinispan interacts with external stores.org.infinispan.persistence.remote Hot Rod-basedAdvancedLoadWriteStore
.org.infinispan.persistence.spi The Persistence SPI. -
-
Uses of PersistenceException in org.infinispan.eviction
Methods in org.infinispan.eviction that throw PersistenceException Modifier and Type Method Description void
PassivationManager. passivateAll()
-
Uses of PersistenceException in org.infinispan.persistence.async
Methods in org.infinispan.persistence.async that throw PersistenceException Modifier and Type Method Description protected void
AsyncCacheWriter. applyModificationsSync(List<Modification> mods)
-
Uses of PersistenceException in org.infinispan.persistence.cluster
Methods in org.infinispan.persistence.cluster that throw PersistenceException Modifier and Type Method Description MarshalledEntry
ClusterLoader. load(Object key)
-
Uses of PersistenceException in org.infinispan.persistence.jdbc.connectionfactory
Methods in org.infinispan.persistence.jdbc.connectionfactory that throw PersistenceException Modifier and Type Method Description abstract Connection
ConnectionFactory. getConnection()
Fetches a connection from the factory.static ConnectionFactory
ConnectionFactory. getConnectionFactory(Class<? extends ConnectionFactory> connectionFactoryClass)
Constructs aConnectionFactory
based on the supplied class name.abstract void
ConnectionFactory. start(ConnectionFactoryConfiguration factoryConfiguration, ClassLoader classLoader)
Starts the connection factory. -
Uses of PersistenceException in org.infinispan.persistence.jdbc.stringbased
Methods in org.infinispan.persistence.jdbc.stringbased that throw PersistenceException Modifier and Type Method Description void
JdbcStringBasedStore. prepareWithModifications(Transaction transaction, BatchModification batchModification)
-
Uses of PersistenceException in org.infinispan.persistence.jpa
Subclasses of PersistenceException in org.infinispan.persistence.jpa Modifier and Type Class Description class
JpaStoreException
-
Uses of PersistenceException in org.infinispan.persistence.keymappers
Subclasses of PersistenceException in org.infinispan.persistence.keymappers Modifier and Type Class Description class
UnsupportedKeyTypeException
Exception thrown by certain cache stores when one tries to persist an entry with an unsupported key type. -
Uses of PersistenceException in org.infinispan.persistence.manager
Methods in org.infinispan.persistence.manager that throw PersistenceException Modifier and Type Method Description void
PersistenceManager. prepareAllTxStores(Transaction transaction, BatchModification batchModification, Predicate<? super StoreConfiguration> predicate)
Perform the prepare phase of 2PC on all Tx stores.void
PersistenceManagerImpl. prepareAllTxStores(Transaction transaction, BatchModification batchModification, Predicate<? super StoreConfiguration> predicate)
void
PersistenceManagerStub. prepareAllTxStores(Transaction transaction, BatchModification batchModification, Predicate<? super StoreConfiguration> predicate)
-
Uses of PersistenceException in org.infinispan.persistence.remote
Methods in org.infinispan.persistence.remote that throw PersistenceException Modifier and Type Method Description void
RemoteStore. clear()
boolean
RemoteStore. contains(Object key)
boolean
RemoteStore. delete(Object key)
MarshalledEntry<K,V>
RemoteStore. load(Object key)
void
RemoteStore. start()
void
RemoteStore. stop()
void
RemoteStore. write(MarshalledEntry entry)
-
Uses of PersistenceException in org.infinispan.persistence.spi
Subclasses of PersistenceException in org.infinispan.persistence.spi Modifier and Type Class Description class
StoreUnavailableException
An exception thrown by thePersistenceManager
if one or more stores are unavailable when a cache operation is attempted.Methods in org.infinispan.persistence.spi that throw PersistenceException Modifier and Type Method Description void
TransactionalCacheWriter. prepareWithModifications(Transaction transaction, BatchModification batchModification)
Write modifications to the store in the prepare phase, as this is the only way we know the FINAL values of the entries.
-