Infinispan Distribution 5.2.6.Final-redhat-2

Uses of Class
org.infinispan.CacheException

Packages that use CacheException
org.infinispan This is the core of Infinispan, a distributed, transactional, highly scalable data grid platform. 
org.infinispan.batch Support for batching calls using the Cache.startBatch() and Cache.endBatch(boolean) API. 
org.infinispan.cli.interpreter.logging   
org.infinispan.config Cache configuration beans and parsers. 
org.infinispan.distexec.mapreduce   
org.infinispan.jmx Helpers that allow easy exposure of attributes and operations via JMX. 
org.infinispan.lucene.logging   
org.infinispan.manager Cache manager package 
org.infinispan.marshall Infinispan makes use of custom marshalling to serialize and deserialize state wherever possible, rather than falling back to the JDK to do this. 
org.infinispan.notifications Notifications and eventing for listeners on both the Cache and CacheManager interfaces. 
org.infinispan.remoting Remote communication between cache instances. 
org.infinispan.remoting.transport.jgroups A transport implementation based on JGroups
org.infinispan.transaction JTA transaction support. 
org.infinispan.transaction.xa XA transaction support. 
org.infinispan.upgrade   
org.infinispan.upgrade.hotrod   
org.infinispan.upgrade.logging   
org.infinispan.util General utilities that are not specific to Infinispan, including string parsing helpers, reflection tools and collections and containers designed to supplement the JDK-provided containers. 
org.infinispan.util.concurrent Thread-safe containers and other concurrency-related utilities, designed to supplement JDK concurrency utilities and containers. 
org.infinispan.util.concurrent.locks Lock and synchronization related classes, tools and utilities. 
org.infinispan.util.logging Infinispan's logging abstractions that delegate to either JDK or Log4J logging engines. 
org.infinispan.xsite   
 

Uses of CacheException in org.infinispan
 

Subclasses of CacheException in org.infinispan
 class CacheConfigurationException
          An exception that represents an error in the configuration.
 class InvalidCacheUsageException
          Thrown when client makes cache usage errors.
 

Uses of CacheException in org.infinispan.batch
 

Methods in org.infinispan.batch that throw CacheException
 boolean BatchContainer.startBatch()
          Starts a batch
 boolean BatchContainer.startBatch(boolean autoBatch)
           
 

Uses of CacheException in org.infinispan.cli.interpreter.logging
 

Methods in org.infinispan.cli.interpreter.logging that return CacheException
 CacheException Log.cannotCreateClusteredCaches(Throwable e, String cacheName)
           
 

Uses of CacheException in org.infinispan.config
 

Subclasses of CacheException in org.infinispan.config
 class ConfigurationException
          An exception that represents an error in the configuration.
 class DuplicateCacheNameException
          Thrown if a duplicate named cache is detected
 

Uses of CacheException in org.infinispan.distexec.mapreduce
 

Methods in org.infinispan.distexec.mapreduce that throw CacheException
 Map<KOut,VOut> MapReduceTask.execute()
          Executes this task across Infinispan cluster nodes.
 

Uses of CacheException in org.infinispan.jmx
 

Subclasses of CacheException in org.infinispan.jmx
 class JmxDomainConflictException
           
 

Methods in org.infinispan.jmx that throw CacheException
 void ComponentsJmxRegistration.registerMBeans()
          Performs the MBean registration.
 void ComponentsJmxRegistration.unregisterMBeans()
          Unregisters all the MBeans registered through ComponentsJmxRegistration.registerMBeans().
 

Uses of CacheException in org.infinispan.lucene.logging
 

Methods in org.infinispan.lucene.logging that return CacheException
 CacheException Log.rootDirectoryIsNotADirectory(String fileRoot)
           
 CacheException Log.unableToCreateDirectory(String fileRoot)
           
 

Uses of CacheException in org.infinispan.manager
 

Subclasses of CacheException in org.infinispan.manager
 class EmbeddedCacheManagerStartupException
          An exception to encapsulate an error when starting up a cache manager
 

Uses of CacheException in org.infinispan.marshall
 

Subclasses of CacheException in org.infinispan.marshall
 class NotSerializableException
          An exception that hides inner stacktrace lines for non serializable exceptions.
 

Uses of CacheException in org.infinispan.notifications
 

Subclasses of CacheException in org.infinispan.notifications
 class IncorrectListenerException
          Thrown when an incorrectly annotated class is added as a cache listener using the Listenable.addListener(Object) API.
 

Uses of CacheException in org.infinispan.remoting
 

Subclasses of CacheException in org.infinispan.remoting
 class RemoteException
          Represents an application-level exception originating in a remote node.
 class RpcException
          Thrown when an RPC problem occurred
 

Uses of CacheException in org.infinispan.remoting.transport.jgroups
 

Subclasses of CacheException in org.infinispan.remoting.transport.jgroups
 class SuspectException
          Thrown when a member is suspected during remote method invocation
 

Uses of CacheException in org.infinispan.transaction
 

Subclasses of CacheException in org.infinispan.transaction
 class WriteSkewException
          Thrown when a write skew is detected
 

Uses of CacheException in org.infinispan.transaction.xa
 

Subclasses of CacheException in org.infinispan.transaction.xa
 class InvalidTransactionException
          Thrown if an operation is to be performed on an invalid transaction context.
 

Uses of CacheException in org.infinispan.upgrade
 

Methods in org.infinispan.upgrade that throw CacheException
 void TargetMigrator.disconnectSource(Cache<Object,Object> cache)
          Disconnects the target from the source.
 long TargetMigrator.synchronizeData(Cache<Object,Object> cache)
          Performs the synchronization of data between source and target by retrieving the set of known keys and fetching each key in turn
 

Uses of CacheException in org.infinispan.upgrade.hotrod
 

Methods in org.infinispan.upgrade.hotrod that throw CacheException
 void HotRodTargetMigrator.disconnectSource(Cache<Object,Object> cache)
           
 long HotRodTargetMigrator.synchronizeData(Cache<Object,Object> cache)
           
 

Uses of CacheException in org.infinispan.upgrade.logging
 

Methods in org.infinispan.upgrade.logging that return CacheException
 CacheException Log.missingMigrationData(String name)
           
 CacheException Log.remoteStoreNoHotRodWrapping(String cacheName)
           
 

Uses of CacheException in org.infinispan.util
 

Methods in org.infinispan.util that return CacheException
static CacheException Util.rewrapAsCacheException(Throwable t)
           
 

Uses of CacheException in org.infinispan.util.concurrent
 

Subclasses of CacheException in org.infinispan.util.concurrent
 class TimeoutException
          Thrown when a timeout occurred.
 

Uses of CacheException in org.infinispan.util.concurrent.locks
 

Subclasses of CacheException in org.infinispan.util.concurrent.locks
 class DeadlockDetectedException
          Exception signaling detected deadlocks.
 

Uses of CacheException in org.infinispan.util.logging
 

Methods in org.infinispan.util.logging with parameters of type CacheException
 void Log.stopBeforeDestroyFailed(CacheException e)
           
 

Uses of CacheException in org.infinispan.xsite
 

Subclasses of CacheException in org.infinispan.xsite
 class BackupFailureException
          Exception to be used to signal failures to backup to remote sites.
 


Infinispan Distribution 5.2.6.Final-redhat-2

Copyright © 2013 JBoss, a division of Red Hat. All Rights Reserved.