Uses of Class
org.jboss.cache.interceptors.Interceptor

Packages that use Interceptor
org.jboss.cache   
org.jboss.cache.interceptors   
 

Uses of Interceptor in org.jboss.cache
 

Fields in org.jboss.cache declared as Interceptor
protected  Interceptor TreeCache.interceptor_chain
          TreeCache.invokeMethod(MethodCall) will dispatch to this chain of interceptors.
 

Methods in org.jboss.cache with parameters of type Interceptor
 void TreeCache.setInterceptorChain(Interceptor i)
          Used for unit tests only - to force interceptor chains.
 

Uses of Interceptor in org.jboss.cache.interceptors
 

Subclasses of Interceptor in org.jboss.cache.interceptors
 class AbstractLockInterceptor
          TODO: MANIK - document this class
 class ActivationInterceptor
          Loads nodes that don't exist at the time of the call into memory from the CacheLoader.
 class CacheLoaderInterceptor
          Loads nodes that don't exist at the time of the call into memory from the CacheLoader
 class CacheStoreInterceptor
          Writes modifications back to the store on the way out: stores modifications back through the CacheLoader, either after each method call (no TXs), or at TX commit.
 class CallInterceptor
          Always at the end of the chain, directly in front of the cache.
 class CreateIfNotExistsInterceptor
          Handles putXXX() methods: if the given node doesn't exist, it will be created (depending on the create_if_not_exists argument)
 class OptimisticCreateIfNotExistsInterceptor
          // TODO: MANIK: Javadoc this
 class OptimisticInterceptor
          //TODO: MANIK: Javadoc this class
 class OptimisticLockingInterceptor
          // TODO: MANIK: Javadoc this
 class OptimisticNodeInterceptor
          // TODO: MANIK: Javadoc this
 class OptimisticReplicationInterceptor
          // TODO: MANIK: Javadoc this
 class OptimisticTxInterceptor
          // TODO: MANIK: Javadoc this
 class OptimisticValidatorInterceptor
          Validates the data in the transaction workspace against data in the actual cache (versions only), and then performs commits if necessary.
 class PassivationInterceptor
          Writes evicted nodes back to the store on the way in through the CacheLoader, either before each method call (no TXs), or at TX commit.
 class PessimisticLockInterceptor
          Handles locking.
 class ReplicationInterceptor
          Takes care of replicating modifications to other nodes in a cluster.
 class UnlockInterceptor
          When a call returns, unlocks all locks held by the current thread in the LockTable.
 

Methods in org.jboss.cache.interceptors that return Interceptor
 Interceptor Interceptor.getNext()
           
 

Methods in org.jboss.cache.interceptors with parameters of type Interceptor
 void Interceptor.setNext(Interceptor i)
           
 



Copyright © 1998-2005 JBoss Inc . All Rights Reserved.