Uses of Interface
org.infinispan.context.InvocationContext
-
Packages that use InvocationContext Package Description org.infinispan.context Contexts contain information of a specific invocation on the cache, such as its origins, scope (transactional or non-transactional), as well as invocation-specific flags.org.infinispan.interceptors Infinispan is designed around a set of interceptors around a data container.org.infinispan.interceptors.base Base interceptors containing common, reusable behavior.org.infinispan.interceptors.distribution Interceptors dealing with command replication in distributed/replicated mode.org.infinispan.interceptors.locking Interceptors dealing with locking.org.infinispan.interceptors.totalorder Interceptors dealing with total order.org.infinispan.interceptors.xsite Interceptors dealing with cross-site replication.org.infinispan.notifications.cachelistener Cache-specific notifications and eventing.org.infinispan.persistence Persistence API.org.infinispan.persistence.internal org.infinispan.statetransfer Transfer of state to new caches in a cluster.org.infinispan.stats.topK org.infinispan.stats.wrappers org.infinispan.util.concurrent.locks Lock and synchronization related classes, tools and utilities. -
-
Uses of InvocationContext in org.infinispan.context
Classes in org.infinispan.context that implement InvocationContext Modifier and Type Class Description classSingleKeyNonTxInvocationContextDeprecated.Since 9.0, this class is going to be moved to an internal package.Methods in org.infinispan.context that return InvocationContext Modifier and Type Method Description InvocationContextInvocationContext. clone()Clones the invocation context.InvocationContextSingleKeyNonTxInvocationContext. clone()Deprecated.InvocationContextAbstractInvocationContextFactory. createClearNonTxInvocationContext()Deprecated.InvocationContextInvocationContextFactory. createClearNonTxInvocationContext()Will create anClearInvocationContextwith theAbstractInvocationContext.isOriginLocal()returning true.InvocationContextInvocationContextFactory. createInvocationContext(boolean isWrite, int keyCount)If we are in a tx scope this will return anTxInvocationContext.InvocationContextInvocationContextFactory. createInvocationContext(Transaction tx, boolean implicitTransaction)Creates an invocation contextInvocationContextNonTransactionalInvocationContextFactory. createInvocationContext(boolean isWrite, int keyCount)Deprecated.InvocationContextNonTransactionalInvocationContextFactory. createInvocationContext(Transaction tx, boolean implicitTransaction)Deprecated.InvocationContextTransactionalInvocationContextFactory. createInvocationContext(boolean isWrite, int keyCount)Deprecated.InvocationContextTransactionalInvocationContextFactory. createInvocationContext(Transaction tx, boolean implicitTransaction)Deprecated.InvocationContextInvocationContextFactory. createRemoteInvocationContext(Address origin)Returns anNonTxInvocationContextwhoseAbstractInvocationContext.isOriginLocal()flag will be true.InvocationContextAbstractInvocationContextFactory. createRemoteInvocationContextForCommand(org.infinispan.commands.VisitableCommand cacheCommand, Address origin)Deprecated.InvocationContextInvocationContextFactory. createRemoteInvocationContextForCommand(org.infinispan.commands.VisitableCommand cacheCommand, Address origin)AsInvocationContextFactory.createRemoteInvocationContext(org.infinispan.remoting.transport.Address), but returning the flags to the context from the Command if any Flag was set.InvocationContextInvocationContextFactory. createSingleKeyNonTxInvocationContext()Will create anNonTxInvocationContextwith theAbstractInvocationContext.isOriginLocal()returning true.InvocationContextNonTransactionalInvocationContextFactory. createSingleKeyNonTxInvocationContext()Deprecated.InvocationContextTransactionalInvocationContextFactory. createSingleKeyNonTxInvocationContext()Deprecated.InvocationContextInvocationContextContainer. getInvocationContext(boolean quiet)Deprecated.Returns theInvocationContextthat is currently associated with the calling thread.Methods in org.infinispan.context with parameters of type InvocationContext Modifier and Type Method Description default voidInvocationContextContainer. clearThreadLocal(InvocationContext context)Deprecated.voidInvocationContextContainer. setThreadLocal(InvocationContext context)Deprecated.Associate the InvocationContext parameter with the calling thread. -
Uses of InvocationContext in org.infinispan.interceptors
Methods in org.infinispan.interceptors with parameters of type InvocationContext Modifier and Type Method Description voidInvocationFinallyAction. accept(InvocationContext rCtx, org.infinispan.commands.VisitableCommand rCommand, Object rv, Throwable throwable)Process the result or the exception from an invocation stage and possibly throw an exception.voidInvocationSuccessAction. accept(InvocationContext rCtx, org.infinispan.commands.VisitableCommand rCommand, Object rv)Process the result from a successful invocation stage and possibly throw an exception.abstract ObjectInvocationStage. addCallback(InvocationContext ctx, org.infinispan.commands.VisitableCommand command, InvocationCallback function)ObjectSyncInvocationStage. addCallback(InvocationContext ctx, org.infinispan.commands.VisitableCommand command, InvocationCallback function)ObjectInvocationStage. andExceptionally(InvocationContext ctx, org.infinispan.commands.VisitableCommand command, InvocationExceptionFunction function)ObjectInvocationStage. andFinally(InvocationContext ctx, org.infinispan.commands.VisitableCommand command, InvocationFinallyAction action)ObjectInvocationStage. andHandle(InvocationContext ctx, org.infinispan.commands.VisitableCommand command, InvocationFinallyFunction function)ObjectInvocationCallback. apply(InvocationContext rCtx, org.infinispan.commands.VisitableCommand rCommand, Object rv, Throwable throwable)Process the result or the exception from an invocation stage and either return a simple value, return a newInvocationStage, or throw an exception.default ObjectInvocationExceptionFunction. apply(InvocationContext rCtx, org.infinispan.commands.VisitableCommand rCommand, Object rv, Throwable throwable)ObjectInvocationExceptionFunction. apply(InvocationContext rCtx, org.infinispan.commands.VisitableCommand rCommand, Throwable throwable)Process the result from a successful invocation stage and either return a simple value, return a newInvocationStage, or throw an exception.default ObjectInvocationFinallyAction. apply(InvocationContext rCtx, org.infinispan.commands.VisitableCommand rCommand, Object rv, Throwable throwable)default ObjectInvocationSuccessAction. apply(InvocationContext rCtx, org.infinispan.commands.VisitableCommand rCommand, Object rv, Throwable throwable)ObjectInvocationSuccessFunction. apply(InvocationContext rCtx, org.infinispan.commands.VisitableCommand rCommand, Object rv)Process the result from a successful invocation stage and either return a simple value, return a newInvocationStage, or throw an exception.default ObjectInvocationSuccessFunction. apply(InvocationContext rCtx, org.infinispan.commands.VisitableCommand rCommand, Object rv, Throwable throwable)ObjectBaseAsyncInterceptor. asyncInvokeNext(InvocationContext ctx, org.infinispan.commands.VisitableCommand command, Collection<? extends CompletionStage<?>> delays)Suspend invocation until alldelayscomplete, then if successful invoke the next interceptor.ObjectBaseAsyncInterceptor. asyncInvokeNext(InvocationContext ctx, org.infinispan.commands.VisitableCommand command, CompletionStage<?> delay)Suspend the invocation untildelaycompletes, then if successful invoke the next interceptor.ObjectBaseAsyncInterceptor. asyncInvokeNext(InvocationContext ctx, org.infinispan.commands.VisitableCommand command, InvocationStage invocationStage)Suspend the invocation untilinvocationStagecompletes, then if successful invoke the next interceptor.protected ObjectDDAsyncInterceptor. handleDefault(InvocationContext ctx, org.infinispan.commands.VisitableCommand command)ObjectAsyncInterceptorChain. invoke(InvocationContext ctx, org.infinispan.commands.VisitableCommand command)Walks the command through the interceptor chain.ObjectEmptyAsyncInterceptorChain. invoke(InvocationContext ctx, org.infinispan.commands.VisitableCommand command)ObjectInterceptorChain. invoke(InvocationContext ctx, org.infinispan.commands.VisitableCommand command)Deprecated.Walks the command through the interceptor chain.CompletableFuture<Object>AsyncInterceptorChain. invokeAsync(InvocationContext ctx, org.infinispan.commands.VisitableCommand command)Walks the command through the interceptor chain.CompletableFuture<Object>EmptyAsyncInterceptorChain. invokeAsync(InvocationContext ctx, org.infinispan.commands.VisitableCommand command)ObjectBaseAsyncInterceptor. invokeNext(InvocationContext ctx, org.infinispan.commands.VisitableCommand command)Invoke the next interceptor, possibly with a new command.ObjectBaseAsyncInterceptor. invokeNextAndExceptionally(InvocationContext ctx, org.infinispan.commands.VisitableCommand command, InvocationExceptionFunction function)Invoke the next interceptor, possibly with a new command, and execute anInvocationCallbackafter all the interceptors have finished with an exception.ObjectBaseAsyncInterceptor. invokeNextAndFinally(InvocationContext ctx, org.infinispan.commands.VisitableCommand command, InvocationFinallyAction action)Invoke the next interceptor, possibly with a new command, and execute anInvocationCallbackafter all the interceptors have finished, with or without an exception.ObjectBaseAsyncInterceptor. invokeNextAndHandle(InvocationContext ctx, org.infinispan.commands.VisitableCommand command, InvocationFinallyFunction function)Invoke the next interceptor, possibly with a new command, and execute anInvocationCallbackafter all the interceptors have finished, with or without an exception.ObjectBaseAsyncInterceptor. invokeNextThenAccept(InvocationContext ctx, org.infinispan.commands.VisitableCommand command, InvocationSuccessAction action)Invoke the next interceptor, possibly with a new command, and execute anInvocationCallbackafter all the interceptors have finished successfully.ObjectBaseAsyncInterceptor. invokeNextThenApply(InvocationContext ctx, org.infinispan.commands.VisitableCommand command, InvocationSuccessFunction function)Invoke the next interceptor, possibly with a new command, and execute anInvocationCallbackafter all the interceptors have finished successfully.ObjectInvocationStage. thenAccept(InvocationContext ctx, org.infinispan.commands.VisitableCommand command, InvocationSuccessAction function)ObjectInvocationStage. thenApply(InvocationContext ctx, org.infinispan.commands.VisitableCommand command, InvocationSuccessFunction function)After the current stage completes successfully, invokefunctionand return its result.ObjectDDAsyncInterceptor. visitClearCommand(InvocationContext ctx, org.infinispan.commands.write.ClearCommand command)ObjectAsyncInterceptor. visitCommand(InvocationContext ctx, org.infinispan.commands.VisitableCommand command)Perform some work for a command invocation.ObjectDDAsyncInterceptor. visitCommand(InvocationContext ctx, org.infinispan.commands.VisitableCommand command)ObjectDDAsyncInterceptor. visitComputeCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeCommand command)ObjectDDAsyncInterceptor. visitComputeIfAbsentCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeIfAbsentCommand command)<V> ObjectDDAsyncInterceptor. visitDistributedExecuteCommand(InvocationContext ctx, org.infinispan.commands.read.DistributedExecuteCommand<V> command)ObjectDDAsyncInterceptor. visitEntrySetCommand(InvocationContext ctx, org.infinispan.commands.read.EntrySetCommand command)ObjectDDAsyncInterceptor. visitEvictCommand(InvocationContext ctx, org.infinispan.commands.write.EvictCommand command)ObjectDDAsyncInterceptor. visitGetAllCommand(InvocationContext ctx, org.infinispan.commands.read.GetAllCommand command)ObjectDDAsyncInterceptor. visitGetCacheEntryCommand(InvocationContext ctx, org.infinispan.commands.read.GetCacheEntryCommand command)ObjectDDAsyncInterceptor. visitGetKeysInGroupCommand(InvocationContext ctx, org.infinispan.commands.remote.GetKeysInGroupCommand command)ObjectDDAsyncInterceptor. visitGetKeyValueCommand(InvocationContext ctx, org.infinispan.commands.read.GetKeyValueCommand command)ObjectDDAsyncInterceptor. visitInvalidateCommand(InvocationContext ctx, org.infinispan.commands.write.InvalidateCommand command)ObjectDDAsyncInterceptor. visitInvalidateL1Command(InvocationContext ctx, org.infinispan.commands.write.InvalidateL1Command command)ObjectDDAsyncInterceptor. visitKeySetCommand(InvocationContext ctx, org.infinispan.commands.read.KeySetCommand command)ObjectDDAsyncInterceptor. visitPutKeyValueCommand(InvocationContext ctx, org.infinispan.commands.write.PutKeyValueCommand command)ObjectDDAsyncInterceptor. visitPutMapCommand(InvocationContext ctx, org.infinispan.commands.write.PutMapCommand command)ObjectDDAsyncInterceptor. visitReadOnlyKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadOnlyKeyCommand command)ObjectDDAsyncInterceptor. visitReadOnlyManyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadOnlyManyCommand command)ObjectDDAsyncInterceptor. visitReadWriteKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteKeyCommand command)ObjectDDAsyncInterceptor. visitReadWriteKeyValueCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteKeyValueCommand command)ObjectDDAsyncInterceptor. visitReadWriteManyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteManyCommand command)ObjectDDAsyncInterceptor. visitReadWriteManyEntriesCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteManyEntriesCommand command)ObjectDDAsyncInterceptor. visitRemoveCommand(InvocationContext ctx, org.infinispan.commands.write.RemoveCommand command)ObjectDDAsyncInterceptor. visitReplaceCommand(InvocationContext ctx, org.infinispan.commands.write.ReplaceCommand command)ObjectDDAsyncInterceptor. visitSizeCommand(InvocationContext ctx, org.infinispan.commands.read.SizeCommand command)ObjectDDAsyncInterceptor. visitUnknownCommand(InvocationContext ctx, org.infinispan.commands.VisitableCommand command)ObjectDDAsyncInterceptor. visitWriteOnlyKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyKeyCommand command)ObjectDDAsyncInterceptor. visitWriteOnlyKeyValueCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyKeyValueCommand command)ObjectDDAsyncInterceptor. visitWriteOnlyManyCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyManyCommand command)ObjectDDAsyncInterceptor. visitWriteOnlyManyEntriesCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyManyEntriesCommand command) -
Uses of InvocationContext in org.infinispan.interceptors.base
Methods in org.infinispan.interceptors.base with parameters of type InvocationContext Modifier and Type Method Description protected abstract voidPrePostProcessingCommandInterceptor. doAfterCall(InvocationContext ctx, org.infinispan.commands.VisitableCommand command)Deprecated.Callback that is invoked after every handleXXX() method defined above.protected booleanPrePostProcessingCommandInterceptor. doBeforeCall(InvocationContext ctx, org.infinispan.commands.VisitableCommand command)Deprecated.protected ObjectPrePostProcessingCommandInterceptor. handleClearCommand(InvocationContext ctx, org.infinispan.commands.write.ClearCommand command)Deprecated.protected ObjectPrePostProcessingCommandInterceptor. handleCommitCommand(InvocationContext ctx, org.infinispan.commands.tx.CommitCommand command)Deprecated.protected ObjectCommandInterceptor. handleDefault(InvocationContext ctx, org.infinispan.commands.VisitableCommand command)Deprecated.The default behaviour of the visitXXX methods, which is to ignore the call and pass the call up to the next interceptor in the chain.protected ObjectPrePostProcessingCommandInterceptor. handleEvictCommand(InvocationContext ctx, org.infinispan.commands.write.EvictCommand command)Deprecated.protected ObjectPrePostProcessingCommandInterceptor. handleGetKeyValueCommand(InvocationContext ctx, org.infinispan.commands.read.GetKeyValueCommand command)Deprecated.protected ObjectPrePostProcessingCommandInterceptor. handlePrepareCommand(InvocationContext ctx, org.infinispan.commands.tx.PrepareCommand command)Deprecated.protected ObjectPrePostProcessingCommandInterceptor. handlePutKeyValueCommand(InvocationContext ctx, org.infinispan.commands.write.PutKeyValueCommand command)Deprecated.protected ObjectPrePostProcessingCommandInterceptor. handlePutMapCommand(InvocationContext ctx, org.infinispan.commands.write.PutMapCommand command)Deprecated.protected ObjectPrePostProcessingCommandInterceptor. handleRemoveCommand(InvocationContext ctx, org.infinispan.commands.write.RemoveCommand command)Deprecated.protected ObjectPrePostProcessingCommandInterceptor. handleReplaceCommand(InvocationContext ctx, org.infinispan.commands.write.ReplaceCommand command)Deprecated.protected ObjectPrePostProcessingCommandInterceptor. handleRollbackCommand(InvocationContext ctx, org.infinispan.commands.tx.RollbackCommand command)Deprecated.protected ObjectPrePostProcessingCommandInterceptor. handleSizeCommand(InvocationContext ctx, org.infinispan.commands.read.SizeCommand command)Deprecated.ObjectCommandInterceptor. invokeNextInterceptor(InvocationContext ctx, org.infinispan.commands.VisitableCommand command)Deprecated.Invokes the next interceptor in the chain.ObjectPrePostProcessingCommandInterceptor. visitClearCommand(InvocationContext ctx, org.infinispan.commands.write.ClearCommand command)Deprecated.ObjectCommandInterceptor. visitCommand(InvocationContext ctx, org.infinispan.commands.VisitableCommand command)Deprecated.ObjectPrePostProcessingCommandInterceptor. visitComputeCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeCommand command)Deprecated.ObjectPrePostProcessingCommandInterceptor. visitComputeIfAbsentCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeIfAbsentCommand command)Deprecated.ObjectPrePostProcessingCommandInterceptor. visitEvictCommand(InvocationContext ctx, org.infinispan.commands.write.EvictCommand command)Deprecated.ObjectPrePostProcessingCommandInterceptor. visitGetKeyValueCommand(InvocationContext ctx, org.infinispan.commands.read.GetKeyValueCommand command)Deprecated.ObjectPrePostProcessingCommandInterceptor. visitPutKeyValueCommand(InvocationContext ctx, org.infinispan.commands.write.PutKeyValueCommand command)Deprecated.ObjectPrePostProcessingCommandInterceptor. visitPutMapCommand(InvocationContext ctx, org.infinispan.commands.write.PutMapCommand command)Deprecated.ObjectPrePostProcessingCommandInterceptor. visitRemoveCommand(InvocationContext ctx, org.infinispan.commands.write.RemoveCommand command)Deprecated.ObjectPrePostProcessingCommandInterceptor. visitReplaceCommand(InvocationContext ctx, org.infinispan.commands.write.ReplaceCommand command)Deprecated.ObjectPrePostProcessingCommandInterceptor. visitSizeCommand(InvocationContext ctx, org.infinispan.commands.read.SizeCommand command)Deprecated. -
Uses of InvocationContext in org.infinispan.interceptors.distribution
Methods in org.infinispan.interceptors.distribution with parameters of type InvocationContext Modifier and Type Method Description ObjectBaseDistributionInterceptor.ReadOnlyManyHelper. apply(InvocationContext rCtx, org.infinispan.commands.VisitableCommand rCommand, Object rv)ObjectScatteredDistributionInterceptor.PrimaryResponseHandler. apply(InvocationContext rCtx, org.infinispan.commands.VisitableCommand rCommand, Object rv)org.infinispan.commands.functional.ReadOnlyManyCommandBaseDistributionInterceptor.ReadManyCommandHelper. copyForRemote(C command, List<Object> keys, InvocationContext ctx)org.infinispan.commands.functional.ReadOnlyManyCommandBaseDistributionInterceptor.ReadOnlyManyHelper. copyForRemote(org.infinispan.commands.functional.ReadOnlyManyCommand command, List<Object> keys, InvocationContext ctx)CompletionStage<Void>BaseDistributionInterceptor.ReadManyCommandHelper. fetchRequiredKeys(LocalizedCacheTopology cacheTopology, Map<Address,List<Object>> requestedKeys, List<Object> availableKeys, InvocationContext ctx, C command)CompletionStage<Void>BaseDistributionInterceptor.ReadOnlyManyHelper. fetchRequiredKeys(LocalizedCacheTopology cacheTopology, Map<Address,List<Object>> requestedKeys, List<Object> availableKeys, InvocationContext ctx, org.infinispan.commands.functional.ReadOnlyManyCommand command)protected voidBiasedScatteredDistributionInterceptor. handleClear(InvocationContext ctx, org.infinispan.commands.VisitableCommand command, Object ignored)protected voidScatteredDistributionInterceptor. handleClear(InvocationContext ctx, org.infinispan.commands.VisitableCommand command, Object ignored)protected <C extends org.infinispan.commands.TopologyAffectedCommand & org.infinispan.commands.FlagAffectedCommand>
ObjectBaseDistributionInterceptor. handleFunctionalReadManyCommand(InvocationContext ctx, C command, BaseDistributionInterceptor.ReadManyCommandHelper<C> helper)protected ObjectBaseDistributionInterceptor. handleNonTxWriteCommand(InvocationContext ctx, org.infinispan.commands.write.AbstractDataWriteCommand command)protected voidBaseDistributionInterceptor. handleRemotelyRetrievedKeys(InvocationContext ctx, org.infinispan.commands.write.WriteCommand appliedCommand, List<?> remoteKeys)protected voidTxDistributionInterceptor. handleRemotelyRetrievedKeys(InvocationContext ctx, org.infinispan.commands.write.WriteCommand appliedCommand, List<?> remoteKeys)<C extends org.infinispan.commands.write.AbstractDataWriteCommand & org.infinispan.commands.functional.FunctionalCommand>
ObjectTxDistributionInterceptor. handleTxFunctionalCommand(InvocationContext ctx, C command)protected <C extends org.infinispan.commands.VisitableCommand & org.infinispan.commands.FlagAffectedCommand & org.infinispan.commands.TopologyAffectedCommand,K>
ObjectTxDistributionInterceptor. handleTxWriteManyCommand(InvocationContext ctx, C command, Collection<K> keys, BiFunction<C,List<K>,C> copyCommand)protected <C extends org.infinispan.commands.TopologyAffectedCommand & org.infinispan.commands.FlagAffectedCommand,K,V>
ObjectTxDistributionInterceptor. handleTxWriteManyEntriesCommand(InvocationContext ctx, C command, Map<K,V> entries, BiFunction<C,Map<K,V>,C> copyCommand)protected ObjectBaseDistributionInterceptor. invokeRemotely(InvocationContext ctx, org.infinispan.commands.write.DataWriteCommand command, Address primaryOwner)protected ObjectBiasedScatteredDistributionInterceptor. manyWriteResponse(InvocationContext ctx, org.infinispan.commands.write.WriteCommand cmd, Object returnValue)protected ObjectScatteredDistributionInterceptor. manyWriteResponse(InvocationContext ctx, org.infinispan.commands.write.WriteCommand cmd, Object returnValue)protected ObjectL1NonTxInterceptor. performCommandWithL1WriteIfAble(InvocationContext ctx, org.infinispan.commands.DataCommand command, boolean isEntry, boolean shouldAlwaysRunNextInterceptor, boolean registerL1)protected <C extends org.infinispan.commands.FlagAffectedCommand & org.infinispan.commands.TopologyAffectedCommand>
CompletionStage<Void>BaseDistributionInterceptor. remoteGetMany(InvocationContext ctx, C command, Collection<?> keys)protected <C extends org.infinispan.commands.FlagAffectedCommand & org.infinispan.commands.TopologyAffectedCommand>
CompletionStage<Void>BaseDistributionInterceptor. remoteGetSingleKey(InvocationContext ctx, C command, Object key, boolean isWrite)Fetch a key from its remote owners and store it in the context.protected <C extends org.infinispan.commands.FlagAffectedCommand & org.infinispan.commands.TopologyAffectedCommand>
CompletionStage<Void>TxDistributionInterceptor. remoteGetSingleKey(InvocationContext ctx, C command, Object key, boolean isWrite)protected org.infinispan.commands.functional.ReadOnlyKeyCommandBaseDistributionInterceptor. remoteReadOnlyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadOnlyKeyCommand command)protected org.infinispan.commands.functional.ReadOnlyKeyCommandTxDistributionInterceptor. remoteReadOnlyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadOnlyKeyCommand command)protected ObjectBiasedScatteredDistributionInterceptor. singleWriteResponse(InvocationContext ctx, org.infinispan.commands.write.DataWriteCommand cmd, Object returnValue)protected ObjectScatteredDistributionInterceptor. singleWriteResponse(InvocationContext ctx, org.infinispan.commands.write.DataWriteCommand cmd, Object returnValue)This method is called by primary owner responding to the originator after write has been completedprotected Object[]BaseDistributionInterceptor. unwrapFunctionalManyResultOnOrigin(InvocationContext ctx, List<Object> keys, Object responseValue)protected Object[]VersionedDistributionInterceptor. unwrapFunctionalManyResultOnOrigin(InvocationContext ctx, List<Object> keys, Object responseValue)protected ObjectBaseDistributionInterceptor. unwrapFunctionalResultOnOrigin(InvocationContext ctx, Object key, Object responseValue)protected ObjectVersionedDistributionInterceptor. unwrapFunctionalResultOnOrigin(InvocationContext ctx, Object key, Object responseValue)ObjectBaseDistributionInterceptor. visitClearCommand(InvocationContext ctx, org.infinispan.commands.write.ClearCommand command)ObjectScatteredDistributionInterceptor. visitClearCommand(InvocationContext ctx, org.infinispan.commands.write.ClearCommand command)ObjectL1LastChanceInterceptor. visitComputeCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeCommand command)ObjectL1NonTxInterceptor. visitComputeCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeCommand command)ObjectL1TxInterceptor. visitComputeCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeCommand command)ObjectNonTxDistributionInterceptor. visitComputeCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeCommand command)ObjectScatteredDistributionInterceptor.PrimaryResponseGenerator. visitComputeCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeCommand command)ObjectScatteredDistributionInterceptor.PrimaryResponseHandler. visitComputeCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeCommand command)ObjectScatteredDistributionInterceptor. visitComputeCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeCommand command)ObjectTriangleDistributionInterceptor. visitComputeCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeCommand command)ObjectTxDistributionInterceptor. visitComputeCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeCommand command)ObjectL1LastChanceInterceptor. visitComputeIfAbsentCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeIfAbsentCommand command)ObjectL1NonTxInterceptor. visitComputeIfAbsentCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeIfAbsentCommand command)ObjectL1TxInterceptor. visitComputeIfAbsentCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeIfAbsentCommand command)ObjectNonTxDistributionInterceptor. visitComputeIfAbsentCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeIfAbsentCommand command)ObjectScatteredDistributionInterceptor.PrimaryResponseGenerator. visitComputeIfAbsentCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeIfAbsentCommand command)ObjectScatteredDistributionInterceptor.PrimaryResponseHandler. visitComputeIfAbsentCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeIfAbsentCommand command)ObjectScatteredDistributionInterceptor. visitComputeIfAbsentCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeIfAbsentCommand command)ObjectTriangleDistributionInterceptor. visitComputeIfAbsentCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeIfAbsentCommand command)ObjectTxDistributionInterceptor. visitComputeIfAbsentCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeIfAbsentCommand command)ObjectL1LastChanceInterceptor. visitDataWriteCommand(InvocationContext ctx, org.infinispan.commands.write.DataWriteCommand command, boolean assumeOriginKeptEntryInL1)ObjectDistributionBulkInterceptor. visitEntrySetCommand(InvocationContext ctx, org.infinispan.commands.read.EntrySetCommand command)ObjectScatteredDistributionInterceptor. visitEvictCommand(InvocationContext ctx, org.infinispan.commands.write.EvictCommand command)ObjectBaseDistributionInterceptor. visitGetAllCommand(InvocationContext ctx, org.infinispan.commands.read.GetAllCommand command)ObjectScatteredDistributionInterceptor. visitGetAllCommand(InvocationContext ctx, org.infinispan.commands.read.GetAllCommand command)ObjectBaseDistributionInterceptor. visitGetCacheEntryCommand(InvocationContext ctx, org.infinispan.commands.read.GetCacheEntryCommand command)ObjectL1NonTxInterceptor. visitGetCacheEntryCommand(InvocationContext ctx, org.infinispan.commands.read.GetCacheEntryCommand command)ObjectScatteredDistributionInterceptor. visitGetCacheEntryCommand(InvocationContext ctx, org.infinispan.commands.read.GetCacheEntryCommand command)ObjectBaseDistributionInterceptor. visitGetKeysInGroupCommand(InvocationContext ctx, org.infinispan.commands.remote.GetKeysInGroupCommand command)ObjectScatteredDistributionInterceptor. visitGetKeysInGroupCommand(InvocationContext ctx, org.infinispan.commands.remote.GetKeysInGroupCommand command)ObjectBaseDistributionInterceptor. visitGetKeyValueCommand(InvocationContext ctx, org.infinispan.commands.read.GetKeyValueCommand command)ObjectL1NonTxInterceptor. visitGetKeyValueCommand(InvocationContext ctx, org.infinispan.commands.read.GetKeyValueCommand command)ObjectScatteredDistributionInterceptor. visitGetKeyValueCommand(InvocationContext ctx, org.infinispan.commands.read.GetKeyValueCommand command)ObjectL1NonTxInterceptor. visitInvalidateL1Command(InvocationContext ctx, org.infinispan.commands.write.InvalidateL1Command invalidateL1Command)ObjectDistributionBulkInterceptor. visitKeySetCommand(InvocationContext ctx, org.infinispan.commands.read.KeySetCommand command)ObjectL1LastChanceInterceptor. visitPutKeyValueCommand(InvocationContext ctx, org.infinispan.commands.write.PutKeyValueCommand command)ObjectL1NonTxInterceptor. visitPutKeyValueCommand(InvocationContext ctx, org.infinispan.commands.write.PutKeyValueCommand command)ObjectL1TxInterceptor. visitPutKeyValueCommand(InvocationContext ctx, org.infinispan.commands.write.PutKeyValueCommand command)ObjectNonTxDistributionInterceptor. visitPutKeyValueCommand(InvocationContext ctx, org.infinispan.commands.write.PutKeyValueCommand command)ObjectScatteredDistributionInterceptor.PrimaryResponseGenerator. visitPutKeyValueCommand(InvocationContext ctx, org.infinispan.commands.write.PutKeyValueCommand command)ObjectScatteredDistributionInterceptor.PrimaryResponseHandler. visitPutKeyValueCommand(InvocationContext ctx, org.infinispan.commands.write.PutKeyValueCommand command)ObjectScatteredDistributionInterceptor. visitPutKeyValueCommand(InvocationContext ctx, org.infinispan.commands.write.PutKeyValueCommand command)ObjectTriangleDistributionInterceptor. visitPutKeyValueCommand(InvocationContext ctx, org.infinispan.commands.write.PutKeyValueCommand command)ObjectTxDistributionInterceptor. visitPutKeyValueCommand(InvocationContext ctx, org.infinispan.commands.write.PutKeyValueCommand command)ObjectL1LastChanceInterceptor. visitPutMapCommand(InvocationContext ctx, org.infinispan.commands.write.PutMapCommand command)ObjectL1NonTxInterceptor. visitPutMapCommand(InvocationContext ctx, org.infinispan.commands.write.PutMapCommand command)ObjectL1TxInterceptor. visitPutMapCommand(InvocationContext ctx, org.infinispan.commands.write.PutMapCommand command)ObjectNonTxDistributionInterceptor. visitPutMapCommand(InvocationContext ctx, org.infinispan.commands.write.PutMapCommand command)ObjectScatteredDistributionInterceptor.PrimaryResponseGenerator. visitPutMapCommand(InvocationContext ctx, org.infinispan.commands.write.PutMapCommand command)ObjectScatteredDistributionInterceptor.PrimaryResponseHandler. visitPutMapCommand(InvocationContext ctx, org.infinispan.commands.write.PutMapCommand command)ObjectScatteredDistributionInterceptor. visitPutMapCommand(InvocationContext ctx, org.infinispan.commands.write.PutMapCommand command)ObjectTriangleDistributionInterceptor. visitPutMapCommand(InvocationContext ctx, org.infinispan.commands.write.PutMapCommand command)ObjectTxDistributionInterceptor. visitPutMapCommand(InvocationContext ctx, org.infinispan.commands.write.PutMapCommand command)ObjectBaseDistributionInterceptor. visitReadOnlyKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadOnlyKeyCommand command)ObjectScatteredDistributionInterceptor. visitReadOnlyKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadOnlyKeyCommand command)ObjectBaseDistributionInterceptor. visitReadOnlyManyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadOnlyManyCommand command)ObjectScatteredDistributionInterceptor. visitReadOnlyManyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadOnlyManyCommand command)ObjectTxDistributionInterceptor. visitReadOnlyManyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadOnlyManyCommand command)ObjectL1LastChanceInterceptor. visitReadWriteKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteKeyCommand command)ObjectL1NonTxInterceptor. visitReadWriteKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteKeyCommand command)ObjectNonTxDistributionInterceptor. visitReadWriteKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteKeyCommand command)ObjectScatteredDistributionInterceptor.PrimaryResponseGenerator. visitReadWriteKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteKeyCommand command)ObjectScatteredDistributionInterceptor.PrimaryResponseHandler. visitReadWriteKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteKeyCommand command)ObjectScatteredDistributionInterceptor. visitReadWriteKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteKeyCommand command)ObjectTriangleDistributionInterceptor. visitReadWriteKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteKeyCommand command)ObjectTxDistributionInterceptor. visitReadWriteKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteKeyCommand command)ObjectL1LastChanceInterceptor. visitReadWriteKeyValueCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteKeyValueCommand command)ObjectL1NonTxInterceptor. visitReadWriteKeyValueCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteKeyValueCommand command)ObjectNonTxDistributionInterceptor. visitReadWriteKeyValueCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteKeyValueCommand command)ObjectScatteredDistributionInterceptor.PrimaryResponseGenerator. visitReadWriteKeyValueCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteKeyValueCommand command)ObjectScatteredDistributionInterceptor.PrimaryResponseHandler. visitReadWriteKeyValueCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteKeyValueCommand command)ObjectScatteredDistributionInterceptor. visitReadWriteKeyValueCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteKeyValueCommand command)ObjectTriangleDistributionInterceptor. visitReadWriteKeyValueCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteKeyValueCommand command)ObjectTxDistributionInterceptor. visitReadWriteKeyValueCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteKeyValueCommand command)ObjectL1LastChanceInterceptor. visitReadWriteManyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteManyCommand command)ObjectL1NonTxInterceptor. visitReadWriteManyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteManyCommand command)ObjectNonTxDistributionInterceptor. visitReadWriteManyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteManyCommand command)ObjectScatteredDistributionInterceptor.PrimaryResponseGenerator. visitReadWriteManyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteManyCommand command)ObjectScatteredDistributionInterceptor.PrimaryResponseHandler. visitReadWriteManyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteManyCommand command)ObjectScatteredDistributionInterceptor. visitReadWriteManyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteManyCommand command)ObjectTriangleDistributionInterceptor. visitReadWriteManyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteManyCommand command)ObjectTxDistributionInterceptor. visitReadWriteManyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteManyCommand command)ObjectL1LastChanceInterceptor. visitReadWriteManyEntriesCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteManyEntriesCommand command)ObjectL1NonTxInterceptor. visitReadWriteManyEntriesCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteManyEntriesCommand command)ObjectNonTxDistributionInterceptor. visitReadWriteManyEntriesCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteManyEntriesCommand command)ObjectScatteredDistributionInterceptor.PrimaryResponseGenerator. visitReadWriteManyEntriesCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteManyEntriesCommand command)ObjectScatteredDistributionInterceptor.PrimaryResponseHandler. visitReadWriteManyEntriesCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteManyEntriesCommand command)ObjectScatteredDistributionInterceptor. visitReadWriteManyEntriesCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteManyEntriesCommand command)ObjectTriangleDistributionInterceptor. visitReadWriteManyEntriesCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteManyEntriesCommand command)ObjectTxDistributionInterceptor. visitReadWriteManyEntriesCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteManyEntriesCommand command)ObjectL1LastChanceInterceptor. visitRemoveCommand(InvocationContext ctx, org.infinispan.commands.write.RemoveCommand command)ObjectL1NonTxInterceptor. visitRemoveCommand(InvocationContext ctx, org.infinispan.commands.write.RemoveCommand command)ObjectL1TxInterceptor. visitRemoveCommand(InvocationContext ctx, org.infinispan.commands.write.RemoveCommand command)ObjectNonTxDistributionInterceptor. visitRemoveCommand(InvocationContext ctx, org.infinispan.commands.write.RemoveCommand command)ObjectScatteredDistributionInterceptor.PrimaryResponseGenerator. visitRemoveCommand(InvocationContext ctx, org.infinispan.commands.write.RemoveCommand command)ObjectScatteredDistributionInterceptor.PrimaryResponseHandler. visitRemoveCommand(InvocationContext ctx, org.infinispan.commands.write.RemoveCommand command)ObjectScatteredDistributionInterceptor. visitRemoveCommand(InvocationContext ctx, org.infinispan.commands.write.RemoveCommand command)ObjectTriangleDistributionInterceptor. visitRemoveCommand(InvocationContext ctx, org.infinispan.commands.write.RemoveCommand command)ObjectTxDistributionInterceptor. visitRemoveCommand(InvocationContext ctx, org.infinispan.commands.write.RemoveCommand command)ObjectL1LastChanceInterceptor. visitReplaceCommand(InvocationContext ctx, org.infinispan.commands.write.ReplaceCommand command)ObjectL1NonTxInterceptor. visitReplaceCommand(InvocationContext ctx, org.infinispan.commands.write.ReplaceCommand command)ObjectL1TxInterceptor. visitReplaceCommand(InvocationContext ctx, org.infinispan.commands.write.ReplaceCommand command)ObjectNonTxDistributionInterceptor. visitReplaceCommand(InvocationContext ctx, org.infinispan.commands.write.ReplaceCommand command)ObjectScatteredDistributionInterceptor.PrimaryResponseGenerator. visitReplaceCommand(InvocationContext ctx, org.infinispan.commands.write.ReplaceCommand command)ObjectScatteredDistributionInterceptor.PrimaryResponseHandler. visitReplaceCommand(InvocationContext ctx, org.infinispan.commands.write.ReplaceCommand command)ObjectScatteredDistributionInterceptor. visitReplaceCommand(InvocationContext ctx, org.infinispan.commands.write.ReplaceCommand command)ObjectTriangleDistributionInterceptor. visitReplaceCommand(InvocationContext ctx, org.infinispan.commands.write.ReplaceCommand command)ObjectTxDistributionInterceptor. visitReplaceCommand(InvocationContext ctx, org.infinispan.commands.write.ReplaceCommand command)ObjectBaseDistributionInterceptor. visitSizeCommand(InvocationContext ctx, org.infinispan.commands.read.SizeCommand command)ObjectL1LastChanceInterceptor. visitWriteOnlyKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyKeyCommand command)ObjectL1NonTxInterceptor. visitWriteOnlyKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyKeyCommand command)ObjectNonTxDistributionInterceptor. visitWriteOnlyKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyKeyCommand command)ObjectScatteredDistributionInterceptor.PrimaryResponseGenerator. visitWriteOnlyKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyKeyCommand command)ObjectScatteredDistributionInterceptor.PrimaryResponseHandler. visitWriteOnlyKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyKeyCommand command)ObjectScatteredDistributionInterceptor. visitWriteOnlyKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyKeyCommand command)ObjectTriangleDistributionInterceptor. visitWriteOnlyKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyKeyCommand command)ObjectTxDistributionInterceptor. visitWriteOnlyKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyKeyCommand command)ObjectL1LastChanceInterceptor. visitWriteOnlyKeyValueCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyKeyValueCommand command)ObjectL1NonTxInterceptor. visitWriteOnlyKeyValueCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyKeyValueCommand command)ObjectNonTxDistributionInterceptor. visitWriteOnlyKeyValueCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyKeyValueCommand command)ObjectScatteredDistributionInterceptor.PrimaryResponseGenerator. visitWriteOnlyKeyValueCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyKeyValueCommand command)ObjectScatteredDistributionInterceptor.PrimaryResponseHandler. visitWriteOnlyKeyValueCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyKeyValueCommand command)ObjectScatteredDistributionInterceptor. visitWriteOnlyKeyValueCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyKeyValueCommand command)ObjectTriangleDistributionInterceptor. visitWriteOnlyKeyValueCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyKeyValueCommand command)ObjectTxDistributionInterceptor. visitWriteOnlyKeyValueCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyKeyValueCommand command)ObjectL1LastChanceInterceptor. visitWriteOnlyManyCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyManyCommand command)ObjectL1NonTxInterceptor. visitWriteOnlyManyCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyManyCommand command)ObjectNonTxDistributionInterceptor. visitWriteOnlyManyCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyManyCommand command)ObjectScatteredDistributionInterceptor. visitWriteOnlyManyCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyManyCommand command)ObjectTriangleDistributionInterceptor. visitWriteOnlyManyCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyManyCommand command)ObjectTxDistributionInterceptor. visitWriteOnlyManyCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyManyCommand command)ObjectL1LastChanceInterceptor. visitWriteOnlyManyEntriesCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyManyEntriesCommand command)ObjectL1NonTxInterceptor. visitWriteOnlyManyEntriesCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyManyEntriesCommand command)ObjectNonTxDistributionInterceptor. visitWriteOnlyManyEntriesCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyManyEntriesCommand command)ObjectScatteredDistributionInterceptor. visitWriteOnlyManyEntriesCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyManyEntriesCommand command)ObjectTriangleDistributionInterceptor. visitWriteOnlyManyEntriesCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyManyEntriesCommand command)ObjectTxDistributionInterceptor. visitWriteOnlyManyEntriesCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyManyEntriesCommand command)protected ObjectBaseDistributionInterceptor. wrapFunctionalManyResultOnNonOrigin(InvocationContext rCtx, Collection<?> keys, Object[] values)protected ObjectVersionedDistributionInterceptor. wrapFunctionalManyResultOnNonOrigin(InvocationContext ctx, Collection<?> keys, Object[] values)protected voidBaseDistributionInterceptor. wrapRemoteEntry(InvocationContext ctx, Object key, CacheEntry ice, boolean isWrite)protected voidVersionedDistributionInterceptor. wrapRemoteEntry(InvocationContext ctx, Object key, CacheEntry ice, boolean isWrite) -
Uses of InvocationContext in org.infinispan.interceptors.locking
Methods in org.infinispan.interceptors.locking with parameters of type InvocationContext Modifier and Type Method Description protected ClusteringDependentLogic.CommitClusteringDependentLogic.AbstractClusteringDependentLogic. clusterCommitType(org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, int segment, boolean removed)voidClusteringDependentLogic.AbstractClusteringDependentLogic. commitEntry(CacheEntry entry, org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)voidClusteringDependentLogic. commitEntry(CacheEntry entry, org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)protected abstract voidClusteringDependentLogic.AbstractClusteringDependentLogic. commitSingleEntry(CacheEntry entry, org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)protected voidClusteringDependentLogic.DistributionLogic. commitSingleEntry(CacheEntry entry, org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)protected voidClusteringDependentLogic.InvalidationLogic. commitSingleEntry(CacheEntry entry, org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)protected voidClusteringDependentLogic.LocalLogic. commitSingleEntry(CacheEntry entry, org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)protected voidClusteringDependentLogic.ReplicationLogic. commitSingleEntry(CacheEntry entry, org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)protected voidClusteringDependentLogic.ScatteredLogic. commitSingleEntry(CacheEntry entry, org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)ClusteringDependentLogic.CommitClusteringDependentLogic.AbstractClusteringDependentLogic. commitType(org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, int segment, boolean removed)ClusteringDependentLogic.CommitClusteringDependentLogic. commitType(org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, int segment, boolean removed)Determines what type of commit this is.ClusteringDependentLogic.CommitClusteringDependentLogic.InvalidationLogic. commitType(org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, int segment, boolean removed)ClusteringDependentLogic.CommitClusteringDependentLogic.LocalLogic. commitType(org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, int segment, boolean removed)ClusteringDependentLogic.CommitClusteringDependentLogic.ReplicationLogic. commitType(org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, int segment, boolean removed)protected abstract ObjectAbstractLockingInterceptor. handleReadManyCommand(InvocationContext ctx, org.infinispan.commands.FlagAffectedCommand command, Collection<?> keys)protected ObjectAbstractTxLockingInterceptor. handleReadManyCommand(InvocationContext ctx, org.infinispan.commands.FlagAffectedCommand command, Collection<?> keys)protected ObjectNonTransactionalLockingInterceptor. handleReadManyCommand(InvocationContext ctx, org.infinispan.commands.FlagAffectedCommand command, Collection<?> keys)protected ObjectOptimisticLockingInterceptor. handleReadManyCommand(InvocationContext ctx, org.infinispan.commands.FlagAffectedCommand command, Collection<?> keys)protected ObjectPessimisticLockingInterceptor. handleReadManyCommand(InvocationContext ctx, org.infinispan.commands.FlagAffectedCommand command, Collection<?> keys)protected abstract <K> ObjectAbstractLockingInterceptor. handleWriteManyCommand(InvocationContext ctx, org.infinispan.commands.write.WriteCommand command, Collection<K> keys, boolean forwarded)protected <K> ObjectNonTransactionalLockingInterceptor. handleWriteManyCommand(InvocationContext ctx, org.infinispan.commands.write.WriteCommand command, Collection<K> keys, boolean forwarded)protected <K> ObjectOptimisticLockingInterceptor. handleWriteManyCommand(InvocationContext ctx, org.infinispan.commands.write.WriteCommand command, Collection<K> keys, boolean forwarded)protected <K> ObjectPessimisticLockingInterceptor. handleWriteManyCommand(InvocationContext ctx, org.infinispan.commands.write.WriteCommand command, Collection<K> keys, boolean forwarded)protected KeyAwareLockPromiseAbstractLockingInterceptor. lockAndRecord(InvocationContext context, Object key, long timeout)ObjectAbstractLockingInterceptor. visitClearCommand(InvocationContext ctx, org.infinispan.commands.write.ClearCommand command)ObjectAbstractLockingInterceptor. visitComputeCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeCommand command)ObjectAbstractLockingInterceptor. visitComputeIfAbsentCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeIfAbsentCommand command)protected abstract ObjectAbstractLockingInterceptor. visitDataReadCommand(InvocationContext ctx, org.infinispan.commands.DataCommand command)protected ObjectNonTransactionalLockingInterceptor. visitDataReadCommand(InvocationContext ctx, org.infinispan.commands.DataCommand command)protected ObjectOptimisticLockingInterceptor. visitDataReadCommand(InvocationContext ctx, org.infinispan.commands.DataCommand command)protected ObjectPessimisticLockingInterceptor. visitDataReadCommand(InvocationContext ctx, org.infinispan.commands.DataCommand command)protected abstract ObjectAbstractLockingInterceptor. visitDataWriteCommand(InvocationContext ctx, org.infinispan.commands.write.DataWriteCommand command)protected ObjectNonTransactionalLockingInterceptor. visitDataWriteCommand(InvocationContext ctx, org.infinispan.commands.write.DataWriteCommand command)protected ObjectOptimisticLockingInterceptor. visitDataWriteCommand(InvocationContext ctx, org.infinispan.commands.write.DataWriteCommand command)protected ObjectPessimisticLockingInterceptor. visitDataWriteCommand(InvocationContext ctx, org.infinispan.commands.write.DataWriteCommand command)ObjectAbstractLockingInterceptor. visitGetAllCommand(InvocationContext ctx, org.infinispan.commands.read.GetAllCommand command)ObjectAbstractLockingInterceptor. visitGetCacheEntryCommand(InvocationContext ctx, org.infinispan.commands.read.GetCacheEntryCommand command)ObjectAbstractLockingInterceptor. visitGetKeyValueCommand(InvocationContext ctx, org.infinispan.commands.read.GetKeyValueCommand command)ObjectAbstractLockingInterceptor. visitInvalidateCommand(InvocationContext ctx, org.infinispan.commands.write.InvalidateCommand command)ObjectAbstractLockingInterceptor. visitInvalidateL1Command(InvocationContext ctx, org.infinispan.commands.write.InvalidateL1Command command)ObjectAbstractLockingInterceptor. visitPutKeyValueCommand(InvocationContext ctx, org.infinispan.commands.write.PutKeyValueCommand command)ObjectAbstractLockingInterceptor. visitPutMapCommand(InvocationContext ctx, org.infinispan.commands.write.PutMapCommand command)ObjectAbstractLockingInterceptor. visitReadOnlyKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadOnlyKeyCommand command)ObjectAbstractLockingInterceptor. visitReadOnlyManyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadOnlyManyCommand command)ObjectAbstractLockingInterceptor. visitReadWriteKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteKeyCommand command)ObjectAbstractLockingInterceptor. visitReadWriteKeyValueCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteKeyValueCommand command)ObjectAbstractLockingInterceptor. visitReadWriteManyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteManyCommand command)ObjectAbstractLockingInterceptor. visitReadWriteManyEntriesCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteManyEntriesCommand command)ObjectAbstractLockingInterceptor. visitRemoveCommand(InvocationContext ctx, org.infinispan.commands.write.RemoveCommand command)ObjectAbstractLockingInterceptor. visitReplaceCommand(InvocationContext ctx, org.infinispan.commands.write.ReplaceCommand command)ObjectAbstractLockingInterceptor. visitWriteOnlyKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyKeyCommand command)ObjectAbstractLockingInterceptor. visitWriteOnlyKeyValueCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyKeyValueCommand command)ObjectAbstractLockingInterceptor. visitWriteOnlyManyCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyManyCommand command)ObjectAbstractLockingInterceptor. visitWriteOnlyManyEntriesCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyManyEntriesCommand command) -
Uses of InvocationContext in org.infinispan.interceptors.totalorder
Methods in org.infinispan.interceptors.totalorder with parameters of type InvocationContext Modifier and Type Method Description protected voidTotalOrderVersionedEntryWrappingInterceptor. commitContextEntry(CacheEntry entry, InvocationContext ctx, org.infinispan.commands.FlagAffectedCommand command, Flag stateTransferFlag, boolean l1Invalidation)protected ObjectTotalOrderStateTransferInterceptor. handleDefault(InvocationContext ctx, org.infinispan.commands.VisitableCommand command) -
Uses of InvocationContext in org.infinispan.interceptors.xsite
Methods in org.infinispan.interceptors.xsite with parameters of type InvocationContext Modifier and Type Method Description ObjectBaseBackupInterceptor. visitClearCommand(InvocationContext ctx, org.infinispan.commands.write.ClearCommand command)ObjectNonTransactionalBackupInterceptor. visitComputeCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeCommand command)ObjectNonTransactionalBackupInterceptor. visitComputeIfAbsentCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeIfAbsentCommand command)ObjectNonTransactionalBackupInterceptor. visitPutKeyValueCommand(InvocationContext ctx, org.infinispan.commands.write.PutKeyValueCommand command)ObjectNonTransactionalBackupInterceptor. visitPutMapCommand(InvocationContext ctx, org.infinispan.commands.write.PutMapCommand command)ObjectNonTransactionalBackupInterceptor. visitReadWriteKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteKeyCommand command)ObjectNonTransactionalBackupInterceptor. visitReadWriteKeyValueCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteKeyValueCommand command)ObjectNonTransactionalBackupInterceptor. visitReadWriteManyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteManyCommand command)ObjectNonTransactionalBackupInterceptor. visitReadWriteManyEntriesCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteManyEntriesCommand command)ObjectNonTransactionalBackupInterceptor. visitRemoveCommand(InvocationContext ctx, org.infinispan.commands.write.RemoveCommand command)ObjectNonTransactionalBackupInterceptor. visitReplaceCommand(InvocationContext ctx, org.infinispan.commands.write.ReplaceCommand command)ObjectNonTransactionalBackupInterceptor. visitWriteOnlyKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyKeyCommand command)ObjectNonTransactionalBackupInterceptor. visitWriteOnlyKeyValueCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyKeyValueCommand command)ObjectNonTransactionalBackupInterceptor. visitWriteOnlyManyCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyManyCommand command)ObjectNonTransactionalBackupInterceptor. visitWriteOnlyManyEntriesCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyManyEntriesCommand command) -
Uses of InvocationContext in org.infinispan.notifications.cachelistener
Methods in org.infinispan.notifications.cachelistener with parameters of type InvocationContext Modifier and Type Method Description static voidNotifyHelper. entryCommitted(CacheNotifier notifier, org.infinispan.functional.impl.FunctionalNotifier functionalNotifier, boolean created, boolean removed, boolean expired, CacheEntry entry, InvocationContext ctx, org.infinispan.commands.FlagAffectedCommand command, Object previousValue, Metadata previousMetadata)voidCacheNotifier. notifyCacheEntriesEvicted(Collection<InternalCacheEntry<? extends K,? extends V>> entries, InvocationContext ctx, org.infinispan.commands.FlagAffectedCommand command)Notifies all registered listeners of aCacheEntriesEvictedEventevent.voidCacheNotifierImpl. notifyCacheEntriesEvicted(Collection<InternalCacheEntry<? extends K,? extends V>> entries, InvocationContext ctx, org.infinispan.commands.FlagAffectedCommand command)voidCacheNotifier. notifyCacheEntryActivated(K key, V value, boolean pre, InvocationContext ctx, org.infinispan.commands.FlagAffectedCommand command)Notifies all registered listeners of aCacheEntryActivatedEventevent.voidCacheNotifierImpl. notifyCacheEntryActivated(K key, V value, boolean pre, InvocationContext ctx, org.infinispan.commands.FlagAffectedCommand command)voidCacheNotifier. notifyCacheEntryCreated(K key, V value, Metadata metadata, boolean pre, InvocationContext ctx, org.infinispan.commands.FlagAffectedCommand command)Notifies all registered listeners of aCacheEntryCreatedEventevent.voidCacheNotifierImpl. notifyCacheEntryCreated(K key, V value, Metadata metadata, boolean pre, InvocationContext ctx, org.infinispan.commands.FlagAffectedCommand command)voidCacheNotifier. notifyCacheEntryExpired(K key, V value, Metadata metadata, InvocationContext ctx)Notifies all registered listeners of a CacheEntryExpired event.voidCacheNotifierImpl. notifyCacheEntryExpired(K key, V value, Metadata metadata, InvocationContext ctx)voidCacheNotifier. notifyCacheEntryInvalidated(K key, V value, Metadata metadata, boolean pre, InvocationContext ctx, org.infinispan.commands.FlagAffectedCommand command)Notifies all registered listeners of aCacheEntryInvalidatedEventevent.voidCacheNotifierImpl. notifyCacheEntryInvalidated(K key, V value, Metadata metadata, boolean pre, InvocationContext ctx, org.infinispan.commands.FlagAffectedCommand command)voidCacheNotifier. notifyCacheEntryLoaded(K key, V value, boolean pre, InvocationContext ctx, org.infinispan.commands.FlagAffectedCommand command)Notifies all registered listeners of aCacheEntryLoadedEventevent.voidCacheNotifierImpl. notifyCacheEntryLoaded(K key, V value, boolean pre, InvocationContext ctx, org.infinispan.commands.FlagAffectedCommand command)voidCacheNotifier. notifyCacheEntryModified(K key, V value, Metadata metadata, V previousValue, Metadata previousMetadata, boolean pre, InvocationContext ctx, org.infinispan.commands.FlagAffectedCommand command)Notifies all registered listeners of aCacheEntryModifiedEventevent.voidCacheNotifierImpl. notifyCacheEntryModified(K key, V value, Metadata metadata, V previousValue, Metadata previousMetadata, boolean pre, InvocationContext ctx, org.infinispan.commands.FlagAffectedCommand command)voidCacheNotifier. notifyCacheEntryPassivated(K key, V value, boolean pre, InvocationContext ctx, org.infinispan.commands.FlagAffectedCommand command)Notifies all registered listeners of aCacheEntryPassivatedEventevent.voidCacheNotifierImpl. notifyCacheEntryPassivated(K key, V value, boolean pre, InvocationContext ctx, org.infinispan.commands.FlagAffectedCommand command)voidCacheNotifier. notifyCacheEntryRemoved(K key, V previousValue, Metadata previousMetadata, boolean pre, InvocationContext ctx, org.infinispan.commands.FlagAffectedCommand command)Notifies all registered listeners of aCacheEntryRemovedEventevent.voidCacheNotifierImpl. notifyCacheEntryRemoved(K key, V previousValue, Metadata previousMetadata, boolean pre, InvocationContext ctx, org.infinispan.commands.FlagAffectedCommand command)voidCacheNotifier. notifyCacheEntryVisited(K key, V value, boolean pre, InvocationContext ctx, org.infinispan.commands.FlagAffectedCommand command)Notifies all registered listeners of aCacheEntryVisitedEventevent.voidCacheNotifierImpl. notifyCacheEntryVisited(K key, V value, boolean pre, InvocationContext ctx, org.infinispan.commands.FlagAffectedCommand command)voidCacheNotifier. notifyTransactionCompleted(GlobalTransaction transaction, boolean successful, InvocationContext ctx)Notifies all registered listeners of a transaction completion event.voidCacheNotifierImpl. notifyTransactionCompleted(GlobalTransaction transaction, boolean successful, InvocationContext ctx) -
Uses of InvocationContext in org.infinispan.persistence
Methods in org.infinispan.persistence with parameters of type InvocationContext Modifier and Type Method Description static <K,V>
MarshalledEntry<K,V>PersistenceUtil. loadAndCheckExpiration(PersistenceManager persistenceManager, Object key, InvocationContext context, TimeService timeService)Deprecated.since 9.4 This method references PersistenceManager, which isn't a public classstatic <K,V>
InternalCacheEntry<K,V>PersistenceUtil. loadAndComputeInDataContainer(DataContainer<K,V> dataContainer, int segment, PersistenceManager persistenceManager, K key, InvocationContext ctx, TimeService timeService, DataContainer.ComputeAction<K,V> action)Deprecated.since 9.4 This method references PersistenceManager, which isn't a public classstatic <K,V>
InternalCacheEntry<K,V>PersistenceUtil. loadAndStoreInDataContainer(DataContainer<K,V> dataContainer, int segment, PersistenceManager persistenceManager, K key, InvocationContext ctx, TimeService timeService, AtomicReference<Boolean> isLoaded)Deprecated.since 9.4 This method references PersistenceManager, which isn't a public classstatic <K,V>
InternalCacheEntry<K,V>PersistenceUtil. loadAndStoreInDataContainer(DataContainer<K,V> dataContainer, PersistenceManager persistenceManager, K key, InvocationContext ctx, TimeService timeService, AtomicReference<Boolean> isLoaded)Deprecated.since 9.4 This method references PersistenceManager, which isn't a public class -
Uses of InvocationContext in org.infinispan.persistence.internal
Methods in org.infinispan.persistence.internal with parameters of type InvocationContext Modifier and Type Method Description static <K,V>
MarshalledEntry<K,V>PersistenceUtil. loadAndCheckExpiration(PersistenceManager persistenceManager, Object key, int segment, InvocationContext context)static <K,V>
InternalCacheEntry<K,V>PersistenceUtil. loadAndComputeInDataContainer(DataContainer<K,V> dataContainer, int segment, PersistenceManager persistenceManager, K key, InvocationContext ctx, TimeService timeService, DataContainer.ComputeAction<K,V> action)static <K,V>
InternalCacheEntry<K,V>PersistenceUtil. loadAndStoreInDataContainer(DataContainer<K,V> dataContainer, int segment, PersistenceManager persistenceManager, K key, InvocationContext ctx, TimeService timeService, AtomicReference<Boolean> isLoaded)static <K,V>
InternalCacheEntry<K,V>PersistenceUtil. loadAndStoreInDataContainer(DataContainer<K,V> dataContainer, PersistenceManager persistenceManager, K key, InvocationContext ctx, TimeService timeService, AtomicReference<Boolean> isLoaded) -
Uses of InvocationContext in org.infinispan.statetransfer
Methods in org.infinispan.statetransfer with parameters of type InvocationContext Modifier and Type Method Description voidCommitManager. commit(CacheEntry entry, Flag operation, int segment, boolean l1Only, InvocationContext ctx)It tries to commit the cache entry.ObjectStateTransferInterceptor. handleDefault(InvocationContext ctx, org.infinispan.commands.VisitableCommand command)ObjectAffectedKeysVisitor. visitClearCommand(InvocationContext ctx, org.infinispan.commands.write.ClearCommand command)Deprecated.ObjectStateTransferInterceptor. visitClearCommand(InvocationContext ctx, org.infinispan.commands.write.ClearCommand command)ObjectTransactionSynchronizerInterceptor. visitCommand(InvocationContext ctx, org.infinispan.commands.VisitableCommand command)ObjectAffectedKeysVisitor. visitComputeCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeCommand command)Deprecated.ObjectStateTransferInterceptor. visitComputeCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeCommand command)ObjectAffectedKeysVisitor. visitComputeIfAbsentCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeIfAbsentCommand command)Deprecated.ObjectStateTransferInterceptor. visitComputeIfAbsentCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeIfAbsentCommand command)ObjectAffectedKeysVisitor. visitEvictCommand(InvocationContext ctx, org.infinispan.commands.write.EvictCommand command)Deprecated.ObjectStateTransferInterceptor. visitEvictCommand(InvocationContext ctx, org.infinispan.commands.write.EvictCommand command)ObjectAffectedKeysVisitor. visitInvalidateCommand(InvocationContext ctx, org.infinispan.commands.write.InvalidateCommand command)Deprecated.ObjectStateTransferInterceptor. visitInvalidateCommand(InvocationContext ctx, org.infinispan.commands.write.InvalidateCommand command)ObjectAffectedKeysVisitor. visitInvalidateL1Command(InvocationContext ctx, org.infinispan.commands.write.InvalidateL1Command command)Deprecated.ObjectStateTransferInterceptor. visitInvalidateL1Command(InvocationContext ctx, org.infinispan.commands.write.InvalidateL1Command command)ObjectAffectedKeysVisitor. visitPutKeyValueCommand(InvocationContext ctx, org.infinispan.commands.write.PutKeyValueCommand command)Deprecated.ObjectStateTransferInterceptor. visitPutKeyValueCommand(InvocationContext ctx, org.infinispan.commands.write.PutKeyValueCommand command)ObjectAffectedKeysVisitor. visitPutMapCommand(InvocationContext ctx, org.infinispan.commands.write.PutMapCommand command)Deprecated.ObjectStateTransferInterceptor. visitPutMapCommand(InvocationContext ctx, org.infinispan.commands.write.PutMapCommand command)ObjectAffectedKeysVisitor. visitReadWriteKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteKeyCommand command)Deprecated.ObjectStateTransferInterceptor. visitReadWriteKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteKeyCommand command)ObjectStateTransferInterceptor. visitReadWriteKeyValueCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteKeyValueCommand command)ObjectStateTransferInterceptor. visitReadWriteManyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteManyCommand command)ObjectStateTransferInterceptor. visitReadWriteManyEntriesCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteManyEntriesCommand command)ObjectAffectedKeysVisitor. visitRemoveCommand(InvocationContext ctx, org.infinispan.commands.write.RemoveCommand command)Deprecated.ObjectStateTransferInterceptor. visitRemoveCommand(InvocationContext ctx, org.infinispan.commands.write.RemoveCommand command)ObjectAffectedKeysVisitor. visitReplaceCommand(InvocationContext ctx, org.infinispan.commands.write.ReplaceCommand command)Deprecated.ObjectStateTransferInterceptor. visitReplaceCommand(InvocationContext ctx, org.infinispan.commands.write.ReplaceCommand command)ObjectStateTransferInterceptor. visitWriteOnlyKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyKeyCommand command)ObjectStateTransferInterceptor. visitWriteOnlyKeyValueCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyKeyValueCommand command)ObjectStateTransferInterceptor. visitWriteOnlyManyCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyManyCommand command)ObjectStateTransferInterceptor. visitWriteOnlyManyEntriesCommand(InvocationContext ctx, org.infinispan.commands.functional.WriteOnlyManyEntriesCommand command) -
Uses of InvocationContext in org.infinispan.stats.topK
Methods in org.infinispan.stats.topK with parameters of type InvocationContext Modifier and Type Method Description ObjectCacheUsageInterceptor. visitGetAllCommand(InvocationContext ctx, org.infinispan.commands.read.GetAllCommand command)ObjectCacheUsageInterceptor. visitGetKeyValueCommand(InvocationContext ctx, org.infinispan.commands.read.GetKeyValueCommand command)ObjectCacheUsageInterceptor. visitPutKeyValueCommand(InvocationContext ctx, org.infinispan.commands.write.PutKeyValueCommand command) -
Uses of InvocationContext in org.infinispan.stats.wrappers
Methods in org.infinispan.stats.wrappers with parameters of type InvocationContext Modifier and Type Method Description voidExtendedStatisticLockManager. unlockAll(InvocationContext ctx)voidTopKeyLockManager. unlockAll(InvocationContext ctx)ObjectExtendedStatisticInterceptor. visitComputeCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeCommand command)ObjectExtendedStatisticInterceptor. visitComputeIfAbsentCommand(InvocationContext ctx, org.infinispan.commands.write.ComputeIfAbsentCommand command)ObjectExtendedStatisticInterceptor. visitGetAllCommand(InvocationContext ctx, org.infinispan.commands.read.GetAllCommand command)ObjectExtendedStatisticInterceptor. visitGetKeyValueCommand(InvocationContext ctx, org.infinispan.commands.read.GetKeyValueCommand command)ObjectExtendedStatisticInterceptor. visitPutKeyValueCommand(InvocationContext ctx, org.infinispan.commands.write.PutKeyValueCommand command)ObjectExtendedStatisticInterceptor. visitReadWriteKeyCommand(InvocationContext ctx, org.infinispan.commands.functional.ReadWriteKeyCommand command)ObjectExtendedStatisticInterceptor. visitRemoveCommand(InvocationContext ctx, org.infinispan.commands.write.RemoveCommand command)ObjectExtendedStatisticInterceptor. visitReplaceCommand(InvocationContext ctx, org.infinispan.commands.write.ReplaceCommand command) -
Uses of InvocationContext in org.infinispan.util.concurrent.locks
Methods in org.infinispan.util.concurrent.locks with parameters of type InvocationContext Modifier and Type Method Description voidLockManager. unlockAll(InvocationContext context)Same asunlockAll(context.getLockedKeys(), context.getKeyLockOwner();.
-