|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Visitor | |
---|---|
org.infinispan.commands | Commands that operate on the cache, either locally or remotely. |
org.infinispan.commands.read | |
org.infinispan.commands.tx | |
org.infinispan.commands.write | |
org.infinispan.interceptors | Infinispan is designed around a set of interceptors around a data container. |
org.infinispan.interceptors.base |
Uses of Visitor in org.infinispan.commands |
---|
Classes in org.infinispan.commands that implement Visitor | |
---|---|
class |
AbstractVisitor
An abstract implementation of a Visitor that delegates all visit calls to a default handler which can be overridden. |
Methods in org.infinispan.commands with parameters of type Visitor | |
---|---|
Object |
VisitableCommand.acceptVisitor(InvocationContext ctx,
Visitor visitor)
Accept a visitor, and return the result of accepting this visitor. |
Object |
LockControlCommand.acceptVisitor(InvocationContext ctx,
Visitor visitor)
|
Uses of Visitor in org.infinispan.commands.read |
---|
Methods in org.infinispan.commands.read with parameters of type Visitor | |
---|---|
Object |
SizeCommand.acceptVisitor(InvocationContext ctx,
Visitor visitor)
|
Object |
GetKeyValueCommand.acceptVisitor(InvocationContext ctx,
Visitor visitor)
|
Uses of Visitor in org.infinispan.commands.tx |
---|
Methods in org.infinispan.commands.tx with parameters of type Visitor | |
---|---|
Object |
RollbackCommand.acceptVisitor(InvocationContext ctx,
Visitor visitor)
|
Object |
PrepareCommand.acceptVisitor(InvocationContext ctx,
Visitor visitor)
|
Object |
CommitCommand.acceptVisitor(InvocationContext ctx,
Visitor visitor)
|
Uses of Visitor in org.infinispan.commands.write |
---|
Methods in org.infinispan.commands.write with parameters of type Visitor | |
---|---|
Object |
ReplaceCommand.acceptVisitor(InvocationContext ctx,
Visitor visitor)
|
Object |
RemoveCommand.acceptVisitor(InvocationContext ctx,
Visitor visitor)
|
Object |
PutMapCommand.acceptVisitor(InvocationContext ctx,
Visitor visitor)
|
Object |
PutKeyValueCommand.acceptVisitor(InvocationContext ctx,
Visitor visitor)
|
Object |
InvalidateCommand.acceptVisitor(InvocationContext ctx,
Visitor visitor)
|
Object |
EvictCommand.acceptVisitor(InvocationContext ctx,
Visitor visitor)
|
Object |
ClearCommand.acceptVisitor(InvocationContext ctx,
Visitor visitor)
|
Uses of Visitor in org.infinispan.interceptors |
---|
Classes in org.infinispan.interceptors that implement Visitor | |
---|---|
class |
ActivationInterceptor
|
class |
BatchingInterceptor
Interceptor that captures batched calls and attaches contexts. |
class |
CacheLoaderInterceptor
|
class |
CacheMgmtInterceptor
Captures cache management statistics |
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 |
CacheStoreInterceptor.StoreModificationsBuilder
|
class |
CallInterceptor
Always at the end of the chain, directly in front of the cache. |
class |
DistLockingInterceptor
A subclass of the locking interceptor that is able to differentiate committing changes on a ReadCommittedEntry for storage in the main cache or in L1, used by DIST |
class |
DistributionInterceptor
The interceptor that handles distribution of entries across a cluster, as well as transparent lookup |
class |
DistTxInterceptor
A special form of the TxInterceptor that is aware of distribution and consistent hashing, and as such only replays methods during a remote prepare that are targeted to this specific cache instance. |
class |
ImplicitEagerLockingInterceptor
Interceptor in charge of eager, implicit locking of cache keys across cluster within transactional context |
class |
InvalidationInterceptor
This interceptor acts as a replacement to the replication interceptor when the CacheImpl is configured with ClusteredSyncMode as INVALIDATE. |
static class |
InvalidationInterceptor.InvalidationFilterVisitor
|
class |
InvocationContextInterceptor
|
class |
LockingInterceptor
Interceptor to implement MVCC functionality. |
class |
MarshalledValueInterceptor
Interceptor that handles the wrapping and unwrapping of cached data using MarshalledValue s. |
class |
NotificationInterceptor
The interceptor in charge of firing off notifications to cache listeners |
class |
PassivationInterceptor
Writes evicted entries back to the store on the way in through the CacheStore |
class |
ReplicationInterceptor
Takes care of replicating modifications to other caches in a cluster. |
class |
TxInterceptor
Interceptor in charge with handling transaction related operations, e.g enlisting cache as an transaction participant, propagating remotely initiated changes. |
Uses of Visitor in org.infinispan.interceptors.base |
---|
Classes in org.infinispan.interceptors.base that implement Visitor | |
---|---|
class |
BaseRpcInterceptor
Acts as a base for all RPC calls - subclassed by |
class |
CommandInterceptor
This is the base class for all interceptors to extend, and implements the Visitor interface allowing it to
intercept invocations on VisitableCommand s. |
class |
JmxStatsCommandInterceptor
Base class for all the interceptors exposing management statistics. |
class |
PrePostProcessingCommandInterceptor
This interceptor adds pre and post processing to each visitXXX() method. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |