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.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 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(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(ObjectInput input)
static Flag
Flag. valueOf(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 Set<Flag>
Flag. copyWithoutRemotableFlags(Set<Flag> flags)
Deprecated.Since 9.0Set<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(ObjectOutput output, Flag flag)
Method parameters in org.infinispan.context with type arguments of type Flag Modifier and Type Method Description static Set<Flag>
Flag. copyWithoutRemotableFlags(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 void
ClusteringDependentLogic.AbstractClusteringDependentLogic. commitEntry(CacheEntry entry, org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)
void
ClusteringDependentLogic. commitEntry(CacheEntry entry, org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)
protected abstract void
ClusteringDependentLogic.AbstractClusteringDependentLogic. commitSingleEntry(CacheEntry entry, org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)
protected void
ClusteringDependentLogic.DistributionLogic. commitSingleEntry(CacheEntry entry, org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)
protected void
ClusteringDependentLogic.InvalidationLogic. commitSingleEntry(CacheEntry entry, org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)
protected void
ClusteringDependentLogic.LocalLogic. commitSingleEntry(CacheEntry entry, org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)
protected void
ClusteringDependentLogic.ReplicationLogic. commitSingleEntry(CacheEntry entry, org.infinispan.commands.FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)
protected 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 void
TotalOrderVersionedEntryWrappingInterceptor. commitContextEntry(CacheEntry entry, InvocationContext ctx, org.infinispan.commands.FlagAffectedCommand command, Flag stateTransferFlag, boolean l1Invalidation)
-
Uses of Flag in org.infinispan.statetransfer
Methods in org.infinispan.statetransfer with parameters of type Flag Modifier and Type Method Description 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.
-