Uses of Class
org.infinispan.context.Flag
-
Packages that use Flag Package Description org.infinispan This is the core of Infinispan, a distributed, transactional, highly scalable data grid platform.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.locking Interceptors dealing with locking.org.infinispan.interceptors.totalorder Interceptors dealing with total order.org.infinispan.rest REST Server bootstrap and Netty bridge classes.org.infinispan.rest.framework org.infinispan.statetransfer Transfer of state to new caches in a cluster. -
-
Uses of Flag in org.infinispan
Methods in org.infinispan with parameters of type Flag Modifier and Type Method Description default AdvancedCache<K,V>
AdvancedCache. withFlags(Flag flag)
An alternative toAdvancedCache.withFlags(Flag...)
optimized for a single flag.AdvancedCache<K,V>
AdvancedCache. withFlags(Flag... flags)
A method that adds flags to any API call.Method parameters in org.infinispan with type arguments of type Flag Modifier and Type Method Description default AdvancedCache<K,V>
AdvancedCache. withFlags(java.util.Collection<Flag> flags)
An alternative toAdvancedCache.withFlags(Flag...)
not requiring array allocation. -
Uses of Flag in org.infinispan.context
Methods in org.infinispan.context that return Flag Modifier and Type Method Description Flag
Flag.Externalizer. readObject(java.io.ObjectInput input)
static Flag
Flag. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Flag[]
Flag. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.infinispan.context that return types with arguments of type Flag Modifier and Type Method Description static java.util.Set<Flag>
Flag. copyWithoutRemotableFlags(java.util.Set<Flag> flags)
Deprecated.Since 9.0java.util.Set<java.lang.Class<? extends Flag>>
Flag.Externalizer. getTypeClasses()
Methods in org.infinispan.context with parameters of type Flag Modifier and Type Method Description void
Flag.Externalizer. writeObject(java.io.ObjectOutput output, Flag flag)
Method parameters in org.infinispan.context with type arguments of type Flag Modifier and Type Method Description static java.util.Set<Flag>
Flag. copyWithoutRemotableFlags(java.util.Set<Flag> flags)
Deprecated.Since 9.0 -
Uses of Flag in org.infinispan.interceptors.locking
Methods in org.infinispan.interceptors.locking with parameters of type Flag Modifier and Type Method Description java.util.concurrent.CompletionStage<java.lang.Void>
ClusteringDependentLogic.AbstractClusteringDependentLogic. commitEntry(CacheEntry entry, org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)
java.util.concurrent.CompletionStage<java.lang.Void>
ClusteringDependentLogic. commitEntry(CacheEntry entry, org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)
Commits the entry to the data container.java.util.concurrent.CompletionStage<java.lang.Void>
OrderedClusteringDependentLogic. commitEntry(CacheEntry entry, org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)
protected abstract java.util.concurrent.CompletionStage<java.lang.Void>
ClusteringDependentLogic.AbstractClusteringDependentLogic. commitSingleEntry(CacheEntry entry, org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)
protected java.util.concurrent.CompletionStage<java.lang.Void>
ClusteringDependentLogic.DistributionLogic. commitSingleEntry(CacheEntry entry, org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)
protected java.util.concurrent.CompletionStage<java.lang.Void>
ClusteringDependentLogic.InvalidationLogic. commitSingleEntry(CacheEntry entry, org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)
protected java.util.concurrent.CompletionStage<java.lang.Void>
ClusteringDependentLogic.LocalLogic. commitSingleEntry(CacheEntry entry, org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)
protected java.util.concurrent.CompletionStage<java.lang.Void>
ClusteringDependentLogic.ReplicationLogic. commitSingleEntry(CacheEntry entry, org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)
protected java.util.concurrent.CompletableFuture<java.lang.Void>
ClusteringDependentLogic.ScatteredLogic. commitSingleEntry(CacheEntry entry, org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)
-
Uses of Flag in org.infinispan.interceptors.totalorder
Methods in org.infinispan.interceptors.totalorder with parameters of type Flag Modifier and Type Method Description protected java.util.concurrent.CompletionStage<java.lang.Void>
TotalOrderVersionedEntryWrappingInterceptor. commitContextEntry(CacheEntry entry, InvocationContext ctx, org.infinispan.commands.FlagAffectedCommand command, Flag stateTransferFlag, boolean l1Invalidation)
Deprecated. -
Uses of Flag in org.infinispan.rest
Methods in org.infinispan.rest that return Flag Modifier and Type Method Description Flag[]
NettyRestRequest. getFlags()
-
Uses of Flag in org.infinispan.rest.framework
Methods in org.infinispan.rest.framework that return Flag Modifier and Type Method Description Flag[]
RestRequest. getFlags()
-
Uses of Flag in org.infinispan.statetransfer
Methods in org.infinispan.statetransfer with parameters of type Flag Modifier and Type Method Description java.util.concurrent.CompletionStage<java.lang.Void>
CommitManager. commit(CacheEntry entry, Flag operation, int segment, boolean l1Only, InvocationContext ctx)
It tries to commit the cache entry.boolean
CommitManager. isTracking(Flag trackFlag)
void
CommitManager. startTrack(Flag track)
It starts tracking keys committed.void
CommitManager. stopTrack(Flag track)
It stops tracking keys committed.
-