Package org.jboss.cache.interceptors

Class Summary
CacheLoaderInterceptor (src) Loads nodes that don't exist at the time of the call into memory from the CacheLoader
CacheStoreInterceptor (src) 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.
CallInterceptor (src) Always at the end of the chain, directly in front of the cache.
CreateIfNotExistsInterceptor (src) Handles putXXX() methods: if the given node doesn't exist, it will be created (depending on the create_if_not_exists argument)
Interceptor (src) Class representing an interceptor.
LockInterceptor (src) Handles locking.
OrderedSynchronizationHandler (src) Maintains a list of Synchronization handlers.
ReplicationInterceptor (src) Takes care of replicating modifications to other nodes in a cluster.
UnlockInterceptor (src) When a call returns, unlocks all locks held by the current thread in the LockTable.