Uses of Class
org.infinispan.interceptors.DDAsyncInterceptor
Packages that use DDAsyncInterceptor
Package
Description
Infinispan is designed around a set of interceptors around a data container.
Interceptors dealing with command replication in distributed/replicated mode.
Basic interceptors
Interceptors dealing with locking.
Interceptors dealing with cross-site replication.
Transfer of state to new caches in a cluster.
-
Uses of DDAsyncInterceptor in org.infinispan.interceptors
Subclasses of DDAsyncInterceptor in org.infinispan.interceptorsModifier and TypeClassDescriptionclassAnyone using theAsyncInterceptorChain.addInterceptor(AsyncInterceptor, int)method (or any of its overloaded forms) or registering custom interceptors via XML should extend this base class when creating their own custom interceptors. -
Uses of DDAsyncInterceptor in org.infinispan.interceptors.distribution
Subclasses of DDAsyncInterceptor in org.infinispan.interceptors.distributionModifier and TypeClassDescriptionclassBase class for distribution of entries across a cluster.classL1 based interceptor that flushes the L1 cache at the end after a transaction/entry is committed to the data container but before the lock has been released.classInterceptor that handles L1 logic for non-transactional caches.classInterceptor that handles L1 logic for transactional caches.classNon-transactional interceptor used by distributed caches that support concurrent writes.classNon-transactional interceptor used by distributed caches that supports concurrent writes.classHandles the distribution of the transactional caches.classA version of theTxDistributionInterceptorthat adds logic to handling prepares when entries are versioned. -
Uses of DDAsyncInterceptor in org.infinispan.interceptors.impl
Subclasses of DDAsyncInterceptor in org.infinispan.interceptors.implModifier and TypeClassDescriptionclassADDAsyncInterceptorwith common code for all the IRAC related interceptors.classActs as a base for all RPC callsclassA base class for a state transfer interceptor.classInterceptor that captures batched calls and attaches contexts.classfinal classCaptures cache management statistics.classWrites 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.classThe same as a regular cache loader interceptor, except that it contains additional logic to force loading from the cache loader if needed on a remote node, in certain conditions.classBase class for distribution interceptors.classCache store interceptor specific for the distribution and replication cache modes.classInterceptor in charge with wrapping entries and add them in caller's context.classThis interceptor acts as a replacement to the replication interceptor when the CacheImpl is configured with ClusteredSyncMode as INVALIDATE.classInterceptor to verify whether parameters passed into cache are marshallables or not.classBase class for all the interceptors exposing management statistics.classInterceptor used by IRAC for non transactional caches to handle the local site updates.classInterceptor to handle updates from remote sites.classThe interceptor in charge of firing off notifications to cache listenersclassInterceptor used by IRAC for optimistic transactional caches to handle the local site updates.classclassclassPassivation writer ignores any create/modify operations and only does removals.classInterceptor used by IRAC for pessimistic transactional caches to handle the local site updates.classInterceptor that prevents the cache from inserting too many entries over a configured maximum amount.classAn interceptor which ensures that writes to an underlying transactional store are prepared->committed/rolledback as part of the 2PC, therefore ensuring that the cache and transactional store(s) remain consistent.classInterceptor in charge with handling transaction related operations, e.g enlisting cache as an transaction participant, propagating remotely initiated changes.classInterceptor in charge with wrapping entries and add them in caller's context.classInterceptor installed when compatiblity is enabled. -
Uses of DDAsyncInterceptor in org.infinispan.interceptors.locking
Subclasses of DDAsyncInterceptor in org.infinispan.interceptors.lockingModifier and TypeClassDescriptionclassBase class for various locking interceptors in this package.classBase class for transaction based locking interceptors.classLocking interceptor to be used for non-transactional caches.classLocking interceptor to be used by optimistic transactional caches.classLocking interceptor to be used by pessimistic caches. -
Uses of DDAsyncInterceptor in org.infinispan.interceptors.xsite
Subclasses of DDAsyncInterceptor in org.infinispan.interceptors.xsiteModifier and TypeClassDescriptionclassclassHandles x-site data backups for non-transactional caches.classHandles x-site data backups for optimistic transactional caches.classHandles x-site data backups for pessimistic transactional caches. -
Uses of DDAsyncInterceptor in org.infinispan.partitionhandling.impl
Subclasses of DDAsyncInterceptor in org.infinispan.partitionhandling.impl -
Uses of DDAsyncInterceptor in org.infinispan.statetransfer
Subclasses of DDAsyncInterceptor in org.infinispan.statetransferModifier and TypeClassDescriptionclassThis interceptor has two tasks: If the command's topology id is higher than the current topology id, wait for the node to receive transaction data for the new topology id. If the topology id changed during a command's execution, retry the command, but only on the originator (which replicates it to the new owners). If the cache is configured with asynchronous replication, owners cannot signal to the originator that they saw a new topology, so instead each owner forwards the command to all the other owners in the new topology.