Uses of Interface
org.infinispan.context.InvocationContext
-
Packages that use InvocationContext Package Description org.infinispan.cache.impl org.infinispan.commands Commands that operate on the cache, either locally or remotely.org.infinispan.commands.control org.infinispan.commands.functional org.infinispan.commands.read org.infinispan.commands.remote Meta-commands that wrap other commands for remote execution.org.infinispan.commands.tx Commands that represent transactional lifecycle transitions.org.infinispan.commands.write Commands that alter the state of the cache.org.infinispan.container.impl Data containers which store cache entries.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.context.impl This package contains different context implementations, selected dynamically based on the type of invocation.org.infinispan.functional.impl org.infinispan.interceptors Infinispan is designed around a set of interceptors around a data container.org.infinispan.interceptors.distribution Interceptors dealing with command replication in distributed/replicated mode.org.infinispan.interceptors.impl Basic interceptorsorg.infinispan.interceptors.locking Interceptors dealing with locking.org.infinispan.interceptors.xsite Interceptors dealing with cross-site replication.org.infinispan.notifications.cachelistener Cache-specific notifications and eventing.org.infinispan.partitionhandling.impl org.infinispan.persistence Persistence API.org.infinispan.persistence.internal org.infinispan.persistence.manager Implementations of thePersistenceManagerinterface, which define the logic of how infinispan interacts with external stores.org.infinispan.persistence.support org.infinispan.persistence.util org.infinispan.reactive.publisher.impl org.infinispan.statetransfer Transfer of state to new caches in a cluster.org.infinispan.stream.impl org.infinispan.util.concurrent.locks Lock and synchronization related classes, tools and utilities.org.infinispan.util.concurrent.locks.impl -
-
Uses of InvocationContext in org.infinispan.cache.impl
Methods in org.infinispan.cache.impl that return InvocationContext Modifier and Type Method Description InvocationContextContextBuilder. create(int keyCount)Creates a newInvocationContext.InvocationContextInvocationHelper. createInvocationContextWithImplicitTransaction(int keyCount, boolean forceCreateTransaction)Creates an invocation context with an implicit transaction if it is required.protected InvocationContextDecoratedCache. readContext(int size)protected InvocationContextDecoratedCache. writeContext(int size)Methods in org.infinispan.cache.impl with parameters of type InvocationContext Modifier and Type Method Description Map<K,CacheEntry<K,V>>CacheImpl. getAllCacheEntries(Set<?> keys, long explicitFlags, InvocationContext ctx)<T> TInvocationHelper. invoke(InvocationContext context, VisitableCommand command)Invokes thecommandusingcontext.<T> CompletableFuture<T>InvocationHelper. invokeAsync(InvocationContext context, VisitableCommand command) -
Uses of InvocationContext in org.infinispan.commands
-
Uses of InvocationContext in org.infinispan.commands.control
Methods in org.infinispan.commands.control with parameters of type InvocationContext Modifier and Type Method Description ObjectLockControlCommand. acceptVisitor(InvocationContext ctx, Visitor visitor) -
Uses of InvocationContext in org.infinispan.commands.functional
Methods in org.infinispan.commands.functional with parameters of type InvocationContext Modifier and Type Method Description ObjectReadOnlyKeyCommand. acceptVisitor(InvocationContext ctx, Visitor visitor)ObjectReadOnlyManyCommand. acceptVisitor(InvocationContext ctx, Visitor visitor)ObjectReadWriteKeyCommand. acceptVisitor(InvocationContext ctx, Visitor visitor)ObjectReadWriteKeyValueCommand. acceptVisitor(InvocationContext ctx, Visitor visitor)ObjectReadWriteManyCommand. acceptVisitor(InvocationContext ctx, Visitor visitor)ObjectReadWriteManyEntriesCommand. acceptVisitor(InvocationContext ctx, Visitor visitor)ObjectWriteOnlyKeyCommand. acceptVisitor(InvocationContext ctx, Visitor visitor)ObjectWriteOnlyKeyValueCommand. acceptVisitor(InvocationContext ctx, Visitor visitor)ObjectWriteOnlyManyCommand. acceptVisitor(InvocationContext ctx, Visitor visitor)ObjectWriteOnlyManyEntriesCommand. acceptVisitor(InvocationContext ctx, Visitor visitor) -
Uses of InvocationContext in org.infinispan.commands.read
Methods in org.infinispan.commands.read with parameters of type InvocationContext Modifier and Type Method Description ObjectEntrySetCommand. acceptVisitor(InvocationContext ctx, Visitor visitor)ObjectGetAllCommand. acceptVisitor(InvocationContext ctx, Visitor visitor)ObjectGetCacheEntryCommand. acceptVisitor(InvocationContext ctx, Visitor visitor)ObjectGetKeyValueCommand. acceptVisitor(InvocationContext ctx, Visitor visitor)ObjectKeySetCommand. acceptVisitor(InvocationContext ctx, Visitor visitor)ObjectSizeCommand. acceptVisitor(InvocationContext ctx, Visitor visitor) -
Uses of InvocationContext in org.infinispan.commands.remote
Methods in org.infinispan.commands.remote with parameters of type InvocationContext Modifier and Type Method Description ObjectGetKeysInGroupCommand. acceptVisitor(InvocationContext ctx, Visitor visitor) -
Uses of InvocationContext in org.infinispan.commands.tx
Methods in org.infinispan.commands.tx with parameters of type InvocationContext Modifier and Type Method Description ObjectCommitCommand. acceptVisitor(InvocationContext ctx, Visitor visitor)ObjectPrepareCommand. acceptVisitor(InvocationContext ctx, Visitor visitor)ObjectRollbackCommand. acceptVisitor(InvocationContext ctx, Visitor visitor) -
Uses of InvocationContext in org.infinispan.commands.write
Methods in org.infinispan.commands.write with parameters of type InvocationContext Modifier and Type Method Description ObjectClearCommand. acceptVisitor(InvocationContext ctx, Visitor visitor)ObjectComputeCommand. acceptVisitor(InvocationContext ctx, Visitor visitor)ObjectComputeIfAbsentCommand. acceptVisitor(InvocationContext ctx, Visitor visitor)ObjectEvictCommand. acceptVisitor(InvocationContext ctx, Visitor visitor)ObjectInvalidateCommand. acceptVisitor(InvocationContext ctx, Visitor visitor)ObjectInvalidateL1Command. acceptVisitor(InvocationContext ctx, Visitor visitor)ObjectPutKeyValueCommand. acceptVisitor(InvocationContext ctx, Visitor visitor)ObjectPutMapCommand. acceptVisitor(InvocationContext ctx, Visitor visitor)ObjectRemoveCommand. acceptVisitor(InvocationContext ctx, Visitor visitor)ObjectRemoveExpiredCommand. acceptVisitor(InvocationContext ctx, Visitor visitor)ObjectReplaceCommand. acceptVisitor(InvocationContext ctx, Visitor visitor) -
Uses of InvocationContext in org.infinispan.container.impl
Methods in org.infinispan.container.impl with parameters of type InvocationContext Modifier and Type Method Description <K,V>
InternalCacheValue<V>InternalEntryFactory. getValueFromCtx(K key, InvocationContext ctx)Retrieve anInternalCacheValuefrom the providedInvocationContextif anInternalCacheEntryexists, otherwise createInternalCacheEntryfrom the context'sCacheEntryand return its value.<K,V>
InternalCacheValue<V>InternalEntryFactoryImpl. getValueFromCtx(K key, InvocationContext ctx)voidEntryFactory. wrapEntryForExpired(InvocationContext ctx, Object key, int segment)Insert an entry that exists in the data container into the context, even if it is expired Doesn't do anything if the key was already wrappedvoidEntryFactoryImpl. wrapEntryForExpired(InvocationContext ctx, Object key, int segment)CompletionStage<Void>EntryFactory. wrapEntryForReading(InvocationContext ctx, Object key, int segment, boolean isOwner, boolean hasLock, CompletionStage<Void> previousStage)Wraps an entry for reading.CompletionStage<Void>EntryFactoryImpl. wrapEntryForReading(InvocationContext ctx, Object key, int segment, boolean isOwner, boolean hasLock, CompletionStage<Void> previousStage)CompletionStage<Void>EntryFactory. wrapEntryForWriting(InvocationContext ctx, Object key, int segment, boolean isOwner, boolean isRead, CompletionStage<Void> previousStage)Insert an entry that exists in the data container into the context.CompletionStage<Void>EntryFactoryImpl. wrapEntryForWriting(InvocationContext ctx, Object key, int segment, boolean isOwner, boolean isRead, CompletionStage<Void> previousStage)voidEntryFactory. wrapExternalEntry(InvocationContext ctx, Object key, CacheEntry externalEntry, boolean isRead, boolean isWrite)Insert an external entry (e.g.voidEntryFactoryImpl. wrapExternalEntry(InvocationContext ctx, Object key, CacheEntry externalEntry, boolean isRead, boolean isWrite) -
Uses of InvocationContext in org.infinispan.context
-
Uses of InvocationContext in org.infinispan.context.impl
Subinterfaces of InvocationContext in org.infinispan.context.impl Modifier and Type Interface Description interfaceTxInvocationContext<T extends AbstractCacheTransaction>Interface defining additional functionality for invocation contexts that propagate within a transaction's scope.Classes in org.infinispan.context.impl that implement InvocationContext Modifier and Type Class Description classAbstractInvocationContextCommon features of transaction and invocation contextsclassAbstractTxInvocationContext<T extends AbstractCacheTransaction>Support class forTxInvocationContext.classClearInvocationContextImplementation ofInvocationContextused by theClearCommand.classImmutableContextThis context is a non-context for operations such as eviction which are not related to the method invocation which caused them.classLocalTxInvocationContextInvocation context to be used for locally originated transactions.classNonTxInvocationContextContext to be used for non transactional calls, both remote and local.classRemoteTxInvocationContextContext to be used for transaction that originated remotely.classSingleKeyNonTxInvocationContextMethods in org.infinispan.context.impl that return InvocationContext Modifier and Type Method Description InvocationContextAbstractInvocationContext. clone()InvocationContextImmutableContext. clone()InvocationContextSingleKeyNonTxInvocationContext. clone()InvocationContextAbstractInvocationContextFactory. createClearNonTxInvocationContext()InvocationContextNonTransactionalInvocationContextFactory. createInvocationContext(boolean isWrite, int keyCount)InvocationContextNonTransactionalInvocationContextFactory. createInvocationContext(Transaction tx, boolean implicitTransaction)InvocationContextTransactionalInvocationContextFactory. createInvocationContext(boolean isWrite, int keyCount)InvocationContextTransactionalInvocationContextFactory. createInvocationContext(Transaction tx, boolean implicitTransaction)InvocationContextAbstractInvocationContextFactory. createRemoteInvocationContextForCommand(VisitableCommand cacheCommand, Address origin)InvocationContextNonTransactionalInvocationContextFactory. createSingleKeyNonTxInvocationContext()InvocationContextTransactionalInvocationContextFactory. createSingleKeyNonTxInvocationContext()Methods in org.infinispan.context.impl with parameters of type InvocationContext Modifier and Type Method Description static FlagFlagBitSets. extractStateTransferFlag(InvocationContext ctx, FlagAffectedCommand command) -
Uses of InvocationContext in org.infinispan.functional.impl
Methods in org.infinispan.functional.impl with parameters of type InvocationContext Modifier and Type Method Description static ObjectStatsEnvelope. unpack(InvocationContext ctx, VisitableCommand command, Object o)static ObjectStatsEnvelope. unpackCollection(InvocationContext ctx, VisitableCommand command, Object o)static ObjectStatsEnvelope. unpackStream(InvocationContext ctx, VisitableCommand command, Object o) -
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, C rCommand, Object rv, Throwable throwable)Process the result or the exception from an invocation stage and possibly throw an exception.voidInvocationSuccessAction. accept(InvocationContext rCtx, C rCommand, Object rv)Process the result from a successful invocation stage and possibly throw an exception.ObjectExceptionSyncInvocationStage. addCallback(InvocationContext ctx, VisitableCommand command, InvocationCallback function)abstract <C extends VisitableCommand>
ObjectInvocationStage. addCallback(InvocationContext ctx, C command, InvocationCallback<C> function)After the current stage completes, invokefunctionand return its result.<C extends VisitableCommand>
ObjectSyncInvocationStage. addCallback(InvocationContext ctx, C command, InvocationCallback<C> function)ObjectExceptionSyncInvocationStage. andExceptionally(InvocationContext ctx, VisitableCommand command, InvocationExceptionFunction function)<C extends VisitableCommand>
ObjectInvocationStage. andExceptionally(InvocationContext ctx, C command, InvocationExceptionFunction<C> function)After the current stage completes exceptionally, invokefunctionand return its result.<C extends VisitableCommand>
ObjectSyncInvocationStage. andExceptionally(InvocationContext ctx, C command, InvocationExceptionFunction<C> function)<C extends VisitableCommand>
InvocationStageInvocationStage. andExceptionallyMakeStage(InvocationContext ctx, C command, InvocationExceptionFunction<C> function)After the current stage completes exceptionally, invokefunctionand return its result.<C extends VisitableCommand>
InvocationStageSyncInvocationStage. andExceptionallyMakeStage(InvocationContext ctx, C command, InvocationExceptionFunction<C> function)ObjectExceptionSyncInvocationStage. andFinally(InvocationContext ctx, VisitableCommand command, InvocationFinallyAction action)<C extends VisitableCommand>
ObjectInvocationStage. andFinally(InvocationContext ctx, C command, InvocationFinallyAction<C> action)After the current stage completes, invokeaction.<C extends VisitableCommand>
ObjectSyncInvocationStage. andFinally(InvocationContext ctx, C command, InvocationFinallyAction<C> action)<C extends VisitableCommand>
InvocationStageInvocationStage. andFinallyMakeStage(InvocationContext ctx, C command, InvocationFinallyAction<C> action)After the current stage completes, invokeaction.<C extends VisitableCommand>
InvocationStageSyncInvocationStage. andFinallyMakeStage(InvocationContext ctx, C command, InvocationFinallyAction<C> action)ObjectExceptionSyncInvocationStage. andHandle(InvocationContext ctx, VisitableCommand command, InvocationFinallyFunction function)<C extends VisitableCommand>
ObjectInvocationStage. andHandle(InvocationContext ctx, C command, InvocationFinallyFunction<C> function)After the current stage completes, invokefunctionand return its result.<C extends VisitableCommand>
ObjectSyncInvocationStage. andHandle(InvocationContext ctx, C command, InvocationFinallyFunction<C> function)<C extends VisitableCommand>
InvocationStageInvocationStage. andHandleMakeStage(InvocationContext ctx, C command, InvocationFinallyFunction<C> function)After the current stage completes, invokefunctionand return its result.<C extends VisitableCommand>
InvocationStageSyncInvocationStage. andHandleMakeStage(InvocationContext ctx, C command, InvocationFinallyFunction<C> function)ObjectInvocationCallback. apply(InvocationContext rCtx, C 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, C rCommand, Object rv, Throwable throwable)ObjectInvocationExceptionFunction. apply(InvocationContext rCtx, C 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, C rCommand, Object rv, Throwable throwable)default ObjectInvocationSuccessAction. apply(InvocationContext rCtx, C rCommand, Object rv, Throwable throwable)ObjectInvocationSuccessFunction. apply(InvocationContext rCtx, C 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, C rCommand, Object rv, Throwable throwable)ObjectBaseAsyncInterceptor. asyncInvokeNext(InvocationContext ctx, VisitableCommand command, Collection<? extends CompletionStage<?>> delays)Suspend invocation until alldelayscomplete, then if successful invoke the next interceptor.ObjectBaseAsyncInterceptor. asyncInvokeNext(InvocationContext ctx, VisitableCommand command, CompletionStage<?> delay)Suspend the invocation untildelaycompletes, then if successful invoke the next interceptor.ObjectBaseAsyncInterceptor. asyncInvokeNext(InvocationContext ctx, VisitableCommand command, InvocationStage invocationStage)Suspend the invocation untilinvocationStagecompletes, then if successful invoke the next interceptor.protected ObjectDDAsyncInterceptor. handleDefault(InvocationContext ctx, VisitableCommand command)ObjectAsyncInterceptorChain. invoke(InvocationContext ctx, VisitableCommand command)Walks the command through the interceptor chain.ObjectEmptyAsyncInterceptorChain. invoke(InvocationContext ctx, VisitableCommand command)CompletableFuture<Object>AsyncInterceptorChain. invokeAsync(InvocationContext ctx, VisitableCommand command)Walks the command through the interceptor chain.CompletableFuture<Object>EmptyAsyncInterceptorChain. invokeAsync(InvocationContext ctx, VisitableCommand command)ObjectBaseAsyncInterceptor. invokeNext(InvocationContext ctx, VisitableCommand command)Invoke the next interceptor, possibly with a new command.<C extends VisitableCommand>
ObjectBaseAsyncInterceptor. invokeNextAndExceptionally(InvocationContext ctx, C command, InvocationExceptionFunction<C> function)Invoke the next interceptor, possibly with a new command, and execute anInvocationCallbackafter all the interceptors have finished with an exception.<C extends VisitableCommand>
ObjectBaseAsyncInterceptor. invokeNextAndFinally(InvocationContext ctx, C command, InvocationFinallyAction<C> action)Invoke the next interceptor, possibly with a new command, and execute anInvocationCallbackafter all the interceptors have finished, with or without an exception.<C extends VisitableCommand>
ObjectBaseAsyncInterceptor. invokeNextAndHandle(InvocationContext ctx, C command, InvocationFinallyFunction<C> function)Invoke the next interceptor, possibly with a new command, and execute anInvocationCallbackafter all the interceptors have finished, with or without an exception.<C extends VisitableCommand>
ObjectBaseAsyncInterceptor. invokeNextThenAccept(InvocationContext ctx, C command, InvocationSuccessAction<C> action)Invoke the next interceptor, possibly with a new command, and execute anInvocationCallbackafter all the interceptors have finished successfully.<C extends VisitableCommand>
ObjectBaseAsyncInterceptor. invokeNextThenApply(InvocationContext ctx, C command, InvocationSuccessFunction<C> function)Invoke the next interceptor, possibly with a new command, and execute anInvocationCallbackafter all the interceptors have finished successfully.ObjectExceptionSyncInvocationStage. thenAccept(InvocationContext ctx, VisitableCommand command, InvocationSuccessAction function)<C extends VisitableCommand>
ObjectInvocationStage. thenAccept(InvocationContext ctx, C command, InvocationSuccessAction<C> action)After the current stage completes successfully, invokeaction.<C extends VisitableCommand>
ObjectSyncInvocationStage. thenAccept(InvocationContext ctx, C command, InvocationSuccessAction<C> action)<C extends VisitableCommand>
InvocationStageInvocationStage. thenAcceptMakeStage(InvocationContext ctx, C command, InvocationSuccessAction<C> action)After the current stage completes successfully, invokeaction.<C extends VisitableCommand>
InvocationStageSyncInvocationStage. thenAcceptMakeStage(InvocationContext ctx, C command, InvocationSuccessAction<C> action)ObjectExceptionSyncInvocationStage. thenApply(InvocationContext ctx, VisitableCommand command, InvocationSuccessFunction function)<C extends VisitableCommand>
ObjectInvocationStage. thenApply(InvocationContext ctx, C command, InvocationSuccessFunction<C> function)After the current stage completes successfully, invokefunctionand return its result.<C extends VisitableCommand>
ObjectSyncInvocationStage. thenApply(InvocationContext ctx, C command, InvocationSuccessFunction<C> function)<C extends VisitableCommand>
InvocationStageInvocationStage. thenApplyMakeStage(InvocationContext ctx, C command, InvocationSuccessFunction<C> function)After the current stage completes successfully, invokefunctionand return its result.<C extends VisitableCommand>
InvocationStageSyncInvocationStage. thenApplyMakeStage(InvocationContext ctx, C command, InvocationSuccessFunction<C> function)After the current stage completes successfully, invokefunctionand return its result.ObjectExceptionSyncInvocationStage. thenReturn(InvocationContext ctx, VisitableCommand command, Object returnValue)ObjectInvocationStage. thenReturn(InvocationContext ctx, VisitableCommand command, Object returnValue)Overrides the return value of thisInvocationStageif it is completed successfully.ObjectSyncInvocationStage. thenReturn(InvocationContext ctx, VisitableCommand command, Object returnValue)ObjectDDAsyncInterceptor. visitClearCommand(InvocationContext ctx, ClearCommand command)ObjectAsyncInterceptor. visitCommand(InvocationContext ctx, VisitableCommand command)Perform some work for a command invocation.ObjectDDAsyncInterceptor. visitCommand(InvocationContext ctx, VisitableCommand command)ObjectDDAsyncInterceptor. visitComputeCommand(InvocationContext ctx, ComputeCommand command)ObjectDDAsyncInterceptor. visitComputeIfAbsentCommand(InvocationContext ctx, ComputeIfAbsentCommand command)ObjectDDAsyncInterceptor. visitEntrySetCommand(InvocationContext ctx, EntrySetCommand command)ObjectDDAsyncInterceptor. visitEvictCommand(InvocationContext ctx, EvictCommand command)ObjectDDAsyncInterceptor. visitGetAllCommand(InvocationContext ctx, GetAllCommand command)ObjectDDAsyncInterceptor. visitGetCacheEntryCommand(InvocationContext ctx, GetCacheEntryCommand command)ObjectDDAsyncInterceptor. visitGetKeysInGroupCommand(InvocationContext ctx, GetKeysInGroupCommand command)ObjectDDAsyncInterceptor. visitGetKeyValueCommand(InvocationContext ctx, GetKeyValueCommand command)ObjectDDAsyncInterceptor. visitInvalidateCommand(InvocationContext ctx, InvalidateCommand command)ObjectDDAsyncInterceptor. visitInvalidateL1Command(InvocationContext ctx, InvalidateL1Command command)ObjectDDAsyncInterceptor. visitKeySetCommand(InvocationContext ctx, KeySetCommand command)ObjectDDAsyncInterceptor. visitPutKeyValueCommand(InvocationContext ctx, PutKeyValueCommand command)ObjectDDAsyncInterceptor. visitPutMapCommand(InvocationContext ctx, PutMapCommand command)ObjectDDAsyncInterceptor. visitReadOnlyKeyCommand(InvocationContext ctx, ReadOnlyKeyCommand command)ObjectDDAsyncInterceptor. visitReadOnlyManyCommand(InvocationContext ctx, ReadOnlyManyCommand command)ObjectDDAsyncInterceptor. visitReadWriteKeyCommand(InvocationContext ctx, ReadWriteKeyCommand command)ObjectDDAsyncInterceptor. visitReadWriteKeyValueCommand(InvocationContext ctx, ReadWriteKeyValueCommand command)ObjectDDAsyncInterceptor. visitReadWriteManyCommand(InvocationContext ctx, ReadWriteManyCommand command)ObjectDDAsyncInterceptor. visitReadWriteManyEntriesCommand(InvocationContext ctx, ReadWriteManyEntriesCommand command)ObjectDDAsyncInterceptor. visitRemoveCommand(InvocationContext ctx, RemoveCommand command)ObjectDDAsyncInterceptor. visitReplaceCommand(InvocationContext ctx, ReplaceCommand command)ObjectDDAsyncInterceptor. visitSizeCommand(InvocationContext ctx, SizeCommand command)ObjectDDAsyncInterceptor. visitUnknownCommand(InvocationContext ctx, VisitableCommand command)ObjectDDAsyncInterceptor. visitWriteOnlyKeyCommand(InvocationContext ctx, WriteOnlyKeyCommand command)ObjectDDAsyncInterceptor. visitWriteOnlyKeyValueCommand(InvocationContext ctx, WriteOnlyKeyValueCommand command)ObjectDDAsyncInterceptor. visitWriteOnlyManyCommand(InvocationContext ctx, WriteOnlyManyCommand command)ObjectDDAsyncInterceptor. visitWriteOnlyManyEntriesCommand(InvocationContext ctx, WriteOnlyManyEntriesCommand command) -
Uses of InvocationContext in org.infinispan.interceptors.distribution
-
Uses of InvocationContext in org.infinispan.interceptors.impl
Constructors in org.infinispan.interceptors.impl with parameters of type InvocationContext Constructor Description QueueAsyncInvocationStage(InvocationContext ctx, VisitableCommand command, CompletableFuture<?> valueFuture, InvocationCallback function) -
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(FlagAffectedCommand command, InvocationContext ctx, int segment, boolean removed)CompletionStage<Void>ClusteringDependentLogic.AbstractClusteringDependentLogic. commitEntry(CacheEntry entry, FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)CompletionStage<Void>ClusteringDependentLogic. commitEntry(CacheEntry entry, FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)Commits the entry to the data container.CompletionStage<Void>OrderedClusteringDependentLogic. commitEntry(CacheEntry entry, FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)protected abstract CompletionStage<Void>ClusteringDependentLogic.AbstractClusteringDependentLogic. commitSingleEntry(CacheEntry entry, FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)protected CompletionStage<Void>ClusteringDependentLogic.DistributionLogic. commitSingleEntry(CacheEntry entry, FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)protected CompletionStage<Void>ClusteringDependentLogic.InvalidationLogic. commitSingleEntry(CacheEntry entry, FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)protected CompletionStage<Void>ClusteringDependentLogic.LocalLogic. commitSingleEntry(CacheEntry entry, FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)protected CompletionStage<Void>ClusteringDependentLogic.ReplicationLogic. commitSingleEntry(CacheEntry entry, FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)protected CompletableFuture<Void>ClusteringDependentLogic.ScatteredLogic. commitSingleEntry(CacheEntry entry, FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)ClusteringDependentLogic.CommitClusteringDependentLogic.AbstractClusteringDependentLogic. commitType(FlagAffectedCommand command, InvocationContext ctx, int segment, boolean removed)ClusteringDependentLogic.CommitClusteringDependentLogic. commitType(FlagAffectedCommand command, InvocationContext ctx, int segment, boolean removed)Determines what type of commit this is.ClusteringDependentLogic.CommitClusteringDependentLogic.InvalidationLogic. commitType(FlagAffectedCommand command, InvocationContext ctx, int segment, boolean removed)ClusteringDependentLogic.CommitClusteringDependentLogic.LocalLogic. commitType(FlagAffectedCommand command, InvocationContext ctx, int segment, boolean removed)ClusteringDependentLogic.CommitClusteringDependentLogic.ReplicationLogic. commitType(FlagAffectedCommand command, InvocationContext ctx, int segment, boolean removed)ClusteringDependentLogic.CommitOrderedClusteringDependentLogic. commitType(FlagAffectedCommand command, InvocationContext ctx, int segment, boolean removed)protected abstract ObjectAbstractLockingInterceptor. handleReadManyCommand(InvocationContext ctx, FlagAffectedCommand command, Collection<?> keys)protected ObjectAbstractTxLockingInterceptor. handleReadManyCommand(InvocationContext ctx, FlagAffectedCommand command, Collection<?> keys)protected ObjectNonTransactionalLockingInterceptor. handleReadManyCommand(InvocationContext ctx, FlagAffectedCommand command, Collection<?> keys)protected ObjectOptimisticLockingInterceptor. handleReadManyCommand(InvocationContext ctx, FlagAffectedCommand command, Collection<?> keys)protected ObjectPessimisticLockingInterceptor. handleReadManyCommand(InvocationContext ctx, FlagAffectedCommand command, Collection<?> keys)protected abstract <K> ObjectAbstractLockingInterceptor. handleWriteManyCommand(InvocationContext ctx, WriteCommand command, Collection<K> keys, boolean forwarded)protected <K> ObjectNonTransactionalLockingInterceptor. handleWriteManyCommand(InvocationContext ctx, WriteCommand command, Collection<K> keys, boolean forwarded)protected <K> ObjectOptimisticLockingInterceptor. handleWriteManyCommand(InvocationContext ctx, WriteCommand command, Collection<K> keys, boolean forwarded)protected <K> ObjectPessimisticLockingInterceptor. handleWriteManyCommand(InvocationContext ctx, WriteCommand command, Collection<K> keys, boolean forwarded)protected InvocationStageAbstractLockingInterceptor. lockAndRecord(InvocationContext context, VisitableCommand command, Object key, long timeout)ObjectAbstractLockingInterceptor. visitClearCommand(InvocationContext ctx, ClearCommand command)ObjectAbstractLockingInterceptor. visitComputeCommand(InvocationContext ctx, ComputeCommand command)ObjectAbstractLockingInterceptor. visitComputeIfAbsentCommand(InvocationContext ctx, ComputeIfAbsentCommand command)protected abstract ObjectAbstractLockingInterceptor. visitDataReadCommand(InvocationContext ctx, DataCommand command)protected ObjectNonTransactionalLockingInterceptor. visitDataReadCommand(InvocationContext ctx, DataCommand command)protected ObjectOptimisticLockingInterceptor. visitDataReadCommand(InvocationContext ctx, DataCommand command)protected ObjectPessimisticLockingInterceptor. visitDataReadCommand(InvocationContext ctx, DataCommand command)protected abstract ObjectAbstractLockingInterceptor. visitDataWriteCommand(InvocationContext ctx, DataWriteCommand command)protected ObjectNonTransactionalLockingInterceptor. visitDataWriteCommand(InvocationContext ctx, DataWriteCommand command)protected ObjectOptimisticLockingInterceptor. visitDataWriteCommand(InvocationContext ctx, DataWriteCommand command)protected ObjectPessimisticLockingInterceptor. visitDataWriteCommand(InvocationContext ctx, DataWriteCommand command)ObjectAbstractLockingInterceptor. visitGetAllCommand(InvocationContext ctx, GetAllCommand command)ObjectAbstractLockingInterceptor. visitGetCacheEntryCommand(InvocationContext ctx, GetCacheEntryCommand command)ObjectAbstractLockingInterceptor. visitGetKeyValueCommand(InvocationContext ctx, GetKeyValueCommand command)ObjectAbstractLockingInterceptor. visitInvalidateCommand(InvocationContext ctx, InvalidateCommand command)ObjectAbstractLockingInterceptor. visitInvalidateL1Command(InvocationContext ctx, InvalidateL1Command command)ObjectAbstractLockingInterceptor. visitPutKeyValueCommand(InvocationContext ctx, PutKeyValueCommand command)ObjectAbstractLockingInterceptor. visitPutMapCommand(InvocationContext ctx, PutMapCommand command)ObjectAbstractLockingInterceptor. visitReadOnlyKeyCommand(InvocationContext ctx, ReadOnlyKeyCommand command)ObjectAbstractLockingInterceptor. visitReadOnlyManyCommand(InvocationContext ctx, ReadOnlyManyCommand command)ObjectAbstractLockingInterceptor. visitReadWriteKeyCommand(InvocationContext ctx, ReadWriteKeyCommand command)ObjectAbstractLockingInterceptor. visitReadWriteKeyValueCommand(InvocationContext ctx, ReadWriteKeyValueCommand command)ObjectAbstractLockingInterceptor. visitReadWriteManyCommand(InvocationContext ctx, ReadWriteManyCommand command)ObjectAbstractLockingInterceptor. visitReadWriteManyEntriesCommand(InvocationContext ctx, ReadWriteManyEntriesCommand command)ObjectAbstractLockingInterceptor. visitRemoveCommand(InvocationContext ctx, RemoveCommand command)ObjectAbstractLockingInterceptor. visitReplaceCommand(InvocationContext ctx, ReplaceCommand command)ObjectAbstractLockingInterceptor. visitWriteOnlyKeyCommand(InvocationContext ctx, WriteOnlyKeyCommand command)ObjectAbstractLockingInterceptor. visitWriteOnlyKeyValueCommand(InvocationContext ctx, WriteOnlyKeyValueCommand command)ObjectAbstractLockingInterceptor. visitWriteOnlyManyCommand(InvocationContext ctx, WriteOnlyManyCommand command)ObjectAbstractLockingInterceptor. visitWriteOnlyManyEntriesCommand(InvocationContext ctx, WriteOnlyManyEntriesCommand command) -
Uses of InvocationContext in org.infinispan.interceptors.xsite
-
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 CompletionStage<Void>NotifyHelper. entryCommitted(CacheNotifier notifier, FunctionalNotifier functionalNotifier, boolean created, boolean removed, boolean expired, CacheEntry entry, InvocationContext ctx, FlagAffectedCommand command, Object previousValue, Metadata previousMetadata, EvictionManager evictionManager)CompletionStage<Void>CacheNotifier. notifyCacheEntriesEvicted(Collection<Map.Entry<K,V>> entries, InvocationContext ctx, FlagAffectedCommand command)Notifies all registered listeners of aCacheEntriesEvictedEventevent.CompletionStage<Void>CacheNotifierImpl. notifyCacheEntriesEvicted(Collection<Map.Entry<K,V>> entries, InvocationContext ctx, FlagAffectedCommand command)CompletionStage<Void>CacheNotifier. notifyCacheEntryActivated(K key, V value, boolean pre, InvocationContext ctx, FlagAffectedCommand command)Notifies all registered listeners of aCacheEntryActivatedEventevent.CompletionStage<Void>CacheNotifierImpl. notifyCacheEntryActivated(K key, V value, boolean pre, InvocationContext ctx, FlagAffectedCommand command)CompletionStage<Void>CacheNotifier. notifyCacheEntryCreated(K key, V value, Metadata metadata, boolean pre, InvocationContext ctx, FlagAffectedCommand command)Notifies all registered listeners of aCacheEntryCreatedEventevent.CompletionStage<Void>CacheNotifierImpl. notifyCacheEntryCreated(K key, V value, Metadata metadata, boolean pre, InvocationContext ctx, FlagAffectedCommand command)CompletionStage<Void>CacheNotifier. notifyCacheEntryExpired(K key, V value, Metadata metadata, InvocationContext ctx)Notifies all registered listeners of a CacheEntryExpired event.CompletionStage<Void>CacheNotifierImpl. notifyCacheEntryExpired(K key, V value, Metadata metadata, InvocationContext ctx)CompletionStage<Void>CacheNotifier. notifyCacheEntryInvalidated(K key, V value, Metadata metadata, boolean pre, InvocationContext ctx, FlagAffectedCommand command)Notifies all registered listeners of aCacheEntryInvalidatedEventevent.CompletionStage<Void>CacheNotifierImpl. notifyCacheEntryInvalidated(K key, V value, Metadata metadata, boolean pre, InvocationContext ctx, FlagAffectedCommand command)CompletionStage<Void>CacheNotifier. notifyCacheEntryLoaded(K key, V value, boolean pre, InvocationContext ctx, FlagAffectedCommand command)Notifies all registered listeners of aCacheEntryLoadedEventevent.CompletionStage<Void>CacheNotifierImpl. notifyCacheEntryLoaded(K key, V value, boolean pre, InvocationContext ctx, FlagAffectedCommand command)CompletionStage<Void>CacheNotifier. notifyCacheEntryModified(K key, V value, Metadata metadata, V previousValue, Metadata previousMetadata, boolean pre, InvocationContext ctx, FlagAffectedCommand command)Notifies all registered listeners of aCacheEntryModifiedEventevent.CompletionStage<Void>CacheNotifierImpl. notifyCacheEntryModified(K key, V value, Metadata metadata, V previousValue, Metadata previousMetadata, boolean pre, InvocationContext ctx, FlagAffectedCommand command)CompletionStage<Void>CacheNotifier. notifyCacheEntryPassivated(K key, V value, boolean pre, InvocationContext ctx, FlagAffectedCommand command)Notifies all registered listeners of aCacheEntryPassivatedEventevent.CompletionStage<Void>CacheNotifierImpl. notifyCacheEntryPassivated(K key, V value, boolean pre, InvocationContext ctx, FlagAffectedCommand command)CompletionStage<Void>CacheNotifier. notifyCacheEntryRemoved(K key, V previousValue, Metadata previousMetadata, boolean pre, InvocationContext ctx, FlagAffectedCommand command)Notifies all registered listeners of aCacheEntryRemovedEventevent.CompletionStage<Void>CacheNotifierImpl. notifyCacheEntryRemoved(K key, V previousValue, Metadata previousMetadata, boolean pre, InvocationContext ctx, FlagAffectedCommand command)CompletionStage<Void>CacheNotifier. notifyCacheEntryVisited(K key, V value, boolean pre, InvocationContext ctx, FlagAffectedCommand command)Notifies all registered listeners of aCacheEntryVisitedEventevent.CompletionStage<Void>CacheNotifierImpl. notifyCacheEntryVisited(K key, V value, boolean pre, InvocationContext ctx, FlagAffectedCommand command)CompletionStage<Void>CacheNotifier. notifyTransactionCompleted(GlobalTransaction transaction, boolean successful, InvocationContext ctx)Notifies all registered listeners of a transaction completion event.CompletionStage<Void>CacheNotifierImpl. notifyTransactionCompleted(GlobalTransaction transaction, boolean successful, InvocationContext ctx) -
Uses of InvocationContext in org.infinispan.partitionhandling.impl
-
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>
MarshallableEntry<K,V>PersistenceUtil. loadAndCheckExpiration(PersistenceManager persistenceManager, Object key, InvocationContext context, org.infinispan.commons.time.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, org.infinispan.commons.time.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, org.infinispan.commons.time.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, org.infinispan.commons.time.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>
MarshallableEntry<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, org.infinispan.commons.time.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, org.infinispan.commons.time.TimeService timeService, AtomicReference<Boolean> isLoaded)static <K,V>
InternalCacheEntry<K,V>PersistenceUtil. loadAndStoreInDataContainer(DataContainer<K,V> dataContainer, PersistenceManager persistenceManager, K key, InvocationContext ctx, org.infinispan.commons.time.TimeService timeService, AtomicReference<Boolean> isLoaded) -
Uses of InvocationContext in org.infinispan.persistence.manager
Methods in org.infinispan.persistence.manager with parameters of type InvocationContext Modifier and Type Method Description CompletionStage<Long>PersistenceManager. writeMapCommand(PutMapCommand putMapCommand, InvocationContext ctx, BiPredicate<? super PutMapCommand,Object> commandKeyPredicate)Writes the values modified from a put map command to the stores.CompletionStage<Long>PersistenceManagerImpl. writeMapCommand(PutMapCommand putMapCommand, InvocationContext ctx, BiPredicate<? super PutMapCommand,Object> commandKeyPredicate)CompletionStage<Long>PersistenceManagerStub. writeMapCommand(PutMapCommand putMapCommand, InvocationContext ctx, BiPredicate<? super PutMapCommand,Object> commandKeyPredicate) -
Uses of InvocationContext in org.infinispan.persistence.support
Methods in org.infinispan.persistence.support with parameters of type InvocationContext Modifier and Type Method Description CompletionStage<Long>DelegatingPersistenceManager. writeMapCommand(PutMapCommand putMapCommand, InvocationContext ctx, BiPredicate<? super PutMapCommand,Object> commandKeyPredicate) -
Uses of InvocationContext in org.infinispan.persistence.util
Methods in org.infinispan.persistence.util with parameters of type InvocationContext Modifier and Type Method Description CompletionStage<InternalCacheEntry<K,V>>EntryLoader. loadAndStoreInDataContainer(InvocationContext ctx, Object key, int segment, FlagAffectedCommand cmd)Load and store the entry if present in the data container, returning the entry in the CompletionStage -
Uses of InvocationContext in org.infinispan.reactive.publisher.impl
Methods in org.infinispan.reactive.publisher.impl with parameters of type InvocationContext Modifier and Type Method Description <R> SegmentCompletionPublisher<R>ClusterPublisherManager. entryPublisher(org.infinispan.commons.util.IntSet segments, Set<K> keysToInclude, InvocationContext invocationContext, boolean includeLoader, DeliveryGuarantee deliveryGuarantee, int batchSize, Function<? super org.reactivestreams.Publisher<CacheEntry<K,V>>,? extends org.reactivestreams.Publisher<R>> transformer)Performs the given transformer on data in the cache, resulting in multiple values.<R> SegmentCompletionPublisher<R>ClusterPublisherManagerImpl. entryPublisher(org.infinispan.commons.util.IntSet segments, Set<K> keysToInclude, InvocationContext invocationContext, boolean includeLoader, DeliveryGuarantee deliveryGuarantee, int batchSize, Function<? super org.reactivestreams.Publisher<CacheEntry<K,V>>,? extends org.reactivestreams.Publisher<R>> transformer)<R> SegmentCompletionPublisher<R>LocalClusterPublisherManagerImpl. entryPublisher(org.infinispan.commons.util.IntSet segments, Set<K> keysToInclude, InvocationContext invocationContext, boolean includeLoader, DeliveryGuarantee deliveryGuarantee, int batchSize, Function<? super org.reactivestreams.Publisher<CacheEntry<K,V>>,? extends org.reactivestreams.Publisher<R>> transformer)<R> SegmentCompletionPublisher<R>PartitionAwareClusterPublisherManager. entryPublisher(org.infinispan.commons.util.IntSet segments, Set<K> keysToInclude, InvocationContext invocationContext, boolean includeLoader, DeliveryGuarantee deliveryGuarantee, int batchSize, Function<? super org.reactivestreams.Publisher<CacheEntry<K,V>>,? extends org.reactivestreams.Publisher<R>> transformer)<R> CompletionStage<R>ClusterPublisherManager. entryReduction(boolean parallelPublisher, org.infinispan.commons.util.IntSet segments, Set<K> keysToInclude, InvocationContext invocationContext, boolean includeLoader, DeliveryGuarantee deliveryGuarantee, Function<? super org.reactivestreams.Publisher<CacheEntry<K,V>>,? extends CompletionStage<R>> transformer, Function<? super org.reactivestreams.Publisher<R>,? extends CompletionStage<R>> finalizer)Performs the given transformer and finalizer on data in the cache, resulting in a single value.<R> CompletionStage<R>ClusterPublisherManagerImpl. entryReduction(boolean parallelPublisher, org.infinispan.commons.util.IntSet segments, Set<K> keysToInclude, InvocationContext ctx, boolean includeLoader, DeliveryGuarantee deliveryGuarantee, Function<? super org.reactivestreams.Publisher<CacheEntry<K,V>>,? extends CompletionStage<R>> transformer, Function<? super org.reactivestreams.Publisher<R>,? extends CompletionStage<R>> finalizer)<R> CompletionStage<R>LocalClusterPublisherManagerImpl. entryReduction(boolean parallelPublisher, org.infinispan.commons.util.IntSet segments, Set<K> keysToInclude, InvocationContext invocationContext, boolean includeLoader, DeliveryGuarantee deliveryGuarantee, Function<? super org.reactivestreams.Publisher<CacheEntry<K,V>>,? extends CompletionStage<R>> transformer, Function<? super org.reactivestreams.Publisher<R>,? extends CompletionStage<R>> finalizer)<R> CompletionStage<R>PartitionAwareClusterPublisherManager. entryReduction(boolean parallelPublisher, org.infinispan.commons.util.IntSet segments, Set<K> keysToInclude, InvocationContext ctx, boolean includeLoader, DeliveryGuarantee deliveryGuarantee, Function<? super org.reactivestreams.Publisher<CacheEntry<K,V>>,? extends CompletionStage<R>> transformer, Function<? super org.reactivestreams.Publisher<R>,? extends CompletionStage<R>> finalizer)<R> SegmentCompletionPublisher<R>ClusterPublisherManager. keyPublisher(org.infinispan.commons.util.IntSet segments, Set<K> keysToInclude, InvocationContext invocationContext, boolean includeLoader, DeliveryGuarantee deliveryGuarantee, int batchSize, Function<? super org.reactivestreams.Publisher<K>,? extends org.reactivestreams.Publisher<R>> transformer)Same asClusterPublisherManager.entryPublisher(IntSet, Set, InvocationContext, boolean, DeliveryGuarantee, int, Function)except that the source publisher provided to the transformer is made up of keys only.<R> SegmentCompletionPublisher<R>ClusterPublisherManagerImpl. keyPublisher(org.infinispan.commons.util.IntSet segments, Set<K> keysToInclude, InvocationContext invocationContext, boolean includeLoader, DeliveryGuarantee deliveryGuarantee, int batchSize, Function<? super org.reactivestreams.Publisher<K>,? extends org.reactivestreams.Publisher<R>> transformer)<R> SegmentCompletionPublisher<R>LocalClusterPublisherManagerImpl. keyPublisher(org.infinispan.commons.util.IntSet segments, Set<K> keysToInclude, InvocationContext invocationContext, boolean includeLoader, DeliveryGuarantee deliveryGuarantee, int batchSize, Function<? super org.reactivestreams.Publisher<K>,? extends org.reactivestreams.Publisher<R>> transformer)<R> SegmentCompletionPublisher<R>PartitionAwareClusterPublisherManager. keyPublisher(org.infinispan.commons.util.IntSet segments, Set<K> keysToInclude, InvocationContext invocationContext, boolean includeLoader, DeliveryGuarantee deliveryGuarantee, int batchSize, Function<? super org.reactivestreams.Publisher<K>,? extends org.reactivestreams.Publisher<R>> transformer)<R> CompletionStage<R>ClusterPublisherManager. keyReduction(boolean parallelPublisher, org.infinispan.commons.util.IntSet segments, Set<K> keysToInclude, InvocationContext invocationContext, boolean includeLoader, DeliveryGuarantee deliveryGuarantee, Function<? super org.reactivestreams.Publisher<K>,? extends CompletionStage<R>> transformer, Function<? super org.reactivestreams.Publisher<R>,? extends CompletionStage<R>> finalizer)Same asClusterPublisherManager.entryReduction(boolean, IntSet, Set, InvocationContext, boolean, DeliveryGuarantee, Function, Function)except that the source publisher provided to the transformer is made up of keys only.<R> CompletionStage<R>ClusterPublisherManagerImpl. keyReduction(boolean parallelPublisher, org.infinispan.commons.util.IntSet segments, Set<K> keysToInclude, InvocationContext ctx, boolean includeLoader, DeliveryGuarantee deliveryGuarantee, Function<? super org.reactivestreams.Publisher<K>,? extends CompletionStage<R>> transformer, Function<? super org.reactivestreams.Publisher<R>,? extends CompletionStage<R>> finalizer)<R> CompletionStage<R>LocalClusterPublisherManagerImpl. keyReduction(boolean parallelPublisher, org.infinispan.commons.util.IntSet segments, Set<K> keysToInclude, InvocationContext invocationContext, boolean includeLoader, DeliveryGuarantee deliveryGuarantee, Function<? super org.reactivestreams.Publisher<K>,? extends CompletionStage<R>> transformer, Function<? super org.reactivestreams.Publisher<R>,? extends CompletionStage<R>> finalizer)<R> CompletionStage<R>PartitionAwareClusterPublisherManager. keyReduction(boolean parallelPublisher, org.infinispan.commons.util.IntSet segments, Set<K> keysToInclude, InvocationContext ctx, boolean includeLoader, DeliveryGuarantee deliveryGuarantee, Function<? super org.reactivestreams.Publisher<K>,? extends CompletionStage<R>> transformer, Function<? super org.reactivestreams.Publisher<R>,? extends CompletionStage<R>> finalizer) -
Uses of InvocationContext in org.infinispan.statetransfer
-
Uses of InvocationContext in org.infinispan.stream.impl
Fields in org.infinispan.stream.impl declared as InvocationContext Modifier and Type Field Description protected InvocationContextAbstractCacheStream. invocationContextConstructors in org.infinispan.stream.impl with parameters of type InvocationContext Constructor Description AbstractCacheStream(Address localAddress, boolean parallel, DistributionManager dm, InvocationContext ctx, Supplier<CacheStream<Original>> supplier, boolean includeLoader, int distributedBatchSize, Executor executor, ComponentRegistry registry, Function<? super Original,?> toKeyFunction)DistributedCacheStream(Address localAddress, boolean parallel, DistributionManager dm, InvocationContext ctx, Supplier<CacheStream<R>> supplier, boolean includeLoader, int distributedBatchSize, Executor executor, ComponentRegistry registry, Function<? super Original,?> toKeyFunction)Standard constructor requiring all pertinent information to properly utilize a distributed cache stream -
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();. -
Uses of InvocationContext in org.infinispan.util.concurrent.locks.impl
Methods in org.infinispan.util.concurrent.locks.impl with parameters of type InvocationContext Modifier and Type Method Description voidDefaultLockManager. unlockAll(InvocationContext context)
-