Uses of Interface
org.infinispan.commands.FlagAffectedCommand
-
Packages that use FlagAffectedCommand 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.write Commands that alter the state of the cache.org.infinispan.context.impl This package contains different context implementations, selected dynamically based on the type of invocation.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.impl Basic interceptorsorg.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. -
-
Uses of FlagAffectedCommand in org.infinispan.cache.impl
Methods in org.infinispan.cache.impl with parameters of type FlagAffectedCommand Modifier and Type Method Description static <K,V>
Cache<K,V>Caches. getCacheWithFlags(Cache<K,V> cache, FlagAffectedCommand command)
-
Uses of FlagAffectedCommand in org.infinispan.commands
Subinterfaces of FlagAffectedCommand in org.infinispan.commands Modifier and Type Interface Description interface
DataCommand
Commands of this type manipulate data in the cache.Classes in org.infinispan.commands that implement FlagAffectedCommand Modifier and Type Class Description class
AbstractFlagAffectedCommand
Base class for those commands that can carry flags.class
AbstractTopologyAffectedCommand
Base class for commands that carry topology id.Methods in org.infinispan.commands with parameters of type FlagAffectedCommand Modifier and Type Method Description protected boolean
AbstractFlagAffectedCommand. hasSameFlags(FlagAffectedCommand other)
-
Uses of FlagAffectedCommand in org.infinispan.commands.control
Classes in org.infinispan.commands.control that implement FlagAffectedCommand Modifier and Type Class Description class
LockControlCommand
LockControlCommand is a command that enables distributed locking across infinispan nodes. -
Uses of FlagAffectedCommand in org.infinispan.commands.functional
Classes in org.infinispan.commands.functional that implement FlagAffectedCommand Modifier and Type Class Description class
AbstractWriteKeyCommand<K,V>
class
AbstractWriteManyCommand<K,V>
class
ReadOnlyKeyCommand<K,V,R>
class
ReadOnlyManyCommand<K,V,R>
class
ReadWriteKeyCommand<K,V,R>
class
ReadWriteKeyValueCommand<K,V,T,R>
class
ReadWriteManyCommand<K,V,R>
class
ReadWriteManyEntriesCommand<K,V,T,R>
class
TxReadOnlyKeyCommand<K,V,R>
class
TxReadOnlyManyCommand<K,V,R>
class
WriteOnlyKeyCommand<K,V>
class
WriteOnlyKeyValueCommand<K,V,T>
class
WriteOnlyManyCommand<K,V>
class
WriteOnlyManyEntriesCommand<K,V,T>
-
Uses of FlagAffectedCommand in org.infinispan.commands.read
Classes in org.infinispan.commands.read that implement FlagAffectedCommand Modifier and Type Class Description class
AbstractDataCommand
class
AbstractLocalCommand
Abstract classclass
EntrySetCommand<K,V>
Command implementation forMap.entrySet()
functionality.class
GetAllCommand
Retrieves multiple entries at once.class
GetCacheEntryCommand
Used to fetch a full CacheEntry rather than just the value.class
GetKeyValueCommand
Implements functionality defined byMap.get(Object)
andMap.containsKey(Object)
operationsclass
KeySetCommand<K,V>
Command implementation forMap.keySet()
functionality.class
SizeCommand
Command to calculate the size of the cache -
Uses of FlagAffectedCommand in org.infinispan.commands.remote
Classes in org.infinispan.commands.remote that implement FlagAffectedCommand Modifier and Type Class Description class
GetKeysInGroupCommand
VisitableCommand
that fetches the keys belonging to a group. -
Uses of FlagAffectedCommand in org.infinispan.commands.write
Subinterfaces of FlagAffectedCommand in org.infinispan.commands.write Modifier and Type Interface Description interface
DataWriteCommand
Mixes features from DataCommand and WriteCommandinterface
WriteCommand
A command that modifies the cache in some wayClasses in org.infinispan.commands.write that implement FlagAffectedCommand Modifier and Type Class Description class
AbstractDataWriteCommand
Stuff common to WriteCommandsclass
ApplyDeltaCommand
Deprecated.since 9.1class
ClearCommand
class
ComputeCommand
class
ComputeIfAbsentCommand
class
EvictCommand
class
InvalidateCommand
Removes an entry from memory.class
InvalidateL1Command
Invalidates an entry in a L1 cache (used with DIST mode)class
PutKeyValueCommand
Implements functionality defined byBasicCache.put(Object, Object)
class
PutMapCommand
class
RemoveCommand
class
RemoveExpiredCommand
Removes an entry that is expired from memoryclass
ReplaceCommand
-
Uses of FlagAffectedCommand in org.infinispan.context.impl
Methods in org.infinispan.context.impl with parameters of type FlagAffectedCommand Modifier and Type Method Description static Flag
FlagBitSets. extractStateTransferFlag(InvocationContext ctx, FlagAffectedCommand command)
-
Uses of FlagAffectedCommand in org.infinispan.interceptors.base
Methods in org.infinispan.interceptors.base with parameters of type FlagAffectedCommand Modifier and Type Method Description protected <K,V>
Cache<K,V>CommandInterceptor. getCacheWithFlags(Cache<K,V> cache, FlagAffectedCommand command)
Deprecated.protected long
CommandInterceptor. getLockAcquisitionTimeout(FlagAffectedCommand command, boolean skipLocking)
Deprecated.protected boolean
CommandInterceptor. hasSkipLocking(FlagAffectedCommand command)
Deprecated. -
Uses of FlagAffectedCommand in org.infinispan.interceptors.distribution
Fields in org.infinispan.interceptors.distribution declared as FlagAffectedCommand Modifier and Type Field Description protected FlagAffectedCommand
DistributionBulkInterceptor.BackingEntrySet. command
protected FlagAffectedCommand
DistributionBulkInterceptor.BackingKeySet. command
Methods in org.infinispan.interceptors.distribution with parameters of type FlagAffectedCommand Modifier and Type Method Description protected boolean
L1NonTxInterceptor. skipL1Lookup(FlagAffectedCommand command, Object key)
protected boolean
L1TxInterceptor. skipL1Lookup(FlagAffectedCommand command, Object key)
Constructors in org.infinispan.interceptors.distribution with parameters of type FlagAffectedCommand Constructor Description BackingKeySet(Cache<K,V> cache, CacheSet<K> keySet, FlagAffectedCommand command)
-
Uses of FlagAffectedCommand in org.infinispan.interceptors.impl
Methods in org.infinispan.interceptors.impl with type parameters of type FlagAffectedCommand Modifier and Type Method Description protected <C extends VisitableCommand & TopologyAffectedCommand & FlagAffectedCommand>
ObjectBaseStateTransferInterceptor. handleReadCommand(InvocationContext ctx, C command)
Methods in org.infinispan.interceptors.impl with parameters of type FlagAffectedCommand Modifier and Type Method Description protected void
EntryWrappingInterceptor. commitContextEntries(InvocationContext ctx, FlagAffectedCommand command)
protected void
EntryWrappingInterceptor. commitContextEntry(CacheEntry entry, InvocationContext ctx, FlagAffectedCommand command, Flag stateTransferFlag, boolean l1Invalidation)
protected void
VersionedEntryWrappingInterceptor. commitContextEntry(CacheEntry entry, InvocationContext ctx, FlagAffectedCommand command, Flag stateTransferFlag, boolean l1Invalidation)
AdvancedCache
PrefetchInterceptor. getCacheWithFlags(FlagAffectedCommand command)
protected boolean
CacheLoaderInterceptor. hasSkipLoadFlag(FlagAffectedCommand cmd)
protected boolean
BaseRpcInterceptor. isLocalModeForced(FlagAffectedCommand command)
protected boolean
CacheWriterInterceptor. isProperWriter(InvocationContext ctx, FlagAffectedCommand command, Object key)
protected boolean
DistCacheWriterInterceptor. isProperWriter(InvocationContext ctx, FlagAffectedCommand command, Object key)
protected boolean
CacheWriterInterceptor. isStoreEnabled(FlagAffectedCommand command)
protected boolean
PassivationWriterInterceptor. isStoreEnabled(FlagAffectedCommand command)
protected boolean
BaseRpcInterceptor. isSynchronous(FlagAffectedCommand command)
protected Boolean
CacheLoaderInterceptor. loadIfNeeded(InvocationContext ctx, Object key, FlagAffectedCommand cmd)
Loads from the cache loader the entry for the given key.protected void
CacheLoaderInterceptor. sendNotification(Object key, Object value, boolean pre, InvocationContext ctx, FlagAffectedCommand cmd)
protected boolean
CacheWriterInterceptor. skipSharedStores(InvocationContext ctx, Object key, FlagAffectedCommand command)
protected boolean
DistCacheWriterInterceptor. skipSharedStores(InvocationContext ctx, Object key, FlagAffectedCommand command)
protected boolean
ScatteredCacheWriterInterceptor. skipSharedStores(InvocationContext ctx, Object key, FlagAffectedCommand command)
-
Uses of FlagAffectedCommand in org.infinispan.interceptors.locking
Methods in org.infinispan.interceptors.locking with parameters of type FlagAffectedCommand Modifier and Type Method Description protected ClusteringDependentLogic.Commit
ClusteringDependentLogic.AbstractClusteringDependentLogic. clusterCommitType(FlagAffectedCommand command, InvocationContext ctx, int segment, boolean removed)
void
ClusteringDependentLogic.AbstractClusteringDependentLogic. commitEntry(CacheEntry entry, FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)
void
ClusteringDependentLogic. commitEntry(CacheEntry entry, FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)
protected abstract void
ClusteringDependentLogic.AbstractClusteringDependentLogic. commitSingleEntry(CacheEntry entry, FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)
protected void
ClusteringDependentLogic.DistributionLogic. commitSingleEntry(CacheEntry entry, FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)
protected void
ClusteringDependentLogic.InvalidationLogic. commitSingleEntry(CacheEntry entry, FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)
protected void
ClusteringDependentLogic.LocalLogic. commitSingleEntry(CacheEntry entry, FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)
protected void
ClusteringDependentLogic.ReplicationLogic. commitSingleEntry(CacheEntry entry, FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)
protected void
ClusteringDependentLogic.ScatteredLogic. commitSingleEntry(CacheEntry entry, FlagAffectedCommand command, InvocationContext ctx, Flag trackFlag, boolean l1Invalidation)
ClusteringDependentLogic.Commit
ClusteringDependentLogic.AbstractClusteringDependentLogic. commitType(FlagAffectedCommand command, InvocationContext ctx, int segment, boolean removed)
ClusteringDependentLogic.Commit
ClusteringDependentLogic. commitType(FlagAffectedCommand command, InvocationContext ctx, int segment, boolean removed)
Determines what type of commit this is.ClusteringDependentLogic.Commit
ClusteringDependentLogic.InvalidationLogic. commitType(FlagAffectedCommand command, InvocationContext ctx, int segment, boolean removed)
ClusteringDependentLogic.Commit
ClusteringDependentLogic.LocalLogic. commitType(FlagAffectedCommand command, InvocationContext ctx, int segment, boolean removed)
ClusteringDependentLogic.Commit
ClusteringDependentLogic.ReplicationLogic. commitType(FlagAffectedCommand command, InvocationContext ctx, int segment, boolean removed)
protected long
AbstractLockingInterceptor. getLockTimeoutMillis(FlagAffectedCommand command)
protected abstract Object
AbstractLockingInterceptor. handleReadManyCommand(InvocationContext ctx, FlagAffectedCommand command, Collection<?> keys)
protected Object
AbstractTxLockingInterceptor. handleReadManyCommand(InvocationContext ctx, FlagAffectedCommand command, Collection<?> keys)
protected Object
NonTransactionalLockingInterceptor. handleReadManyCommand(InvocationContext ctx, FlagAffectedCommand command, Collection<?> keys)
protected Object
OptimisticLockingInterceptor. handleReadManyCommand(InvocationContext ctx, FlagAffectedCommand command, Collection<?> keys)
protected Object
PessimisticLockingInterceptor. handleReadManyCommand(InvocationContext ctx, FlagAffectedCommand command, Collection<?> keys)
-
Uses of FlagAffectedCommand in org.infinispan.interceptors.totalorder
Methods in org.infinispan.interceptors.totalorder with parameters of type FlagAffectedCommand Modifier and Type Method Description protected void
TotalOrderVersionedEntryWrappingInterceptor. commitContextEntry(CacheEntry entry, InvocationContext ctx, FlagAffectedCommand command, Flag stateTransferFlag, boolean l1Invalidation)
-
Uses of FlagAffectedCommand in org.infinispan.interceptors.xsite
Methods in org.infinispan.interceptors.xsite with parameters of type FlagAffectedCommand Modifier and Type Method Description protected boolean
BaseBackupInterceptor. skipXSiteBackup(FlagAffectedCommand command)
-
Uses of FlagAffectedCommand in org.infinispan.notifications.cachelistener
Methods in org.infinispan.notifications.cachelistener with parameters of type FlagAffectedCommand Modifier and Type Method Description static void
NotifyHelper. entryCommitted(CacheNotifier notifier, FunctionalNotifier functionalNotifier, boolean created, boolean removed, boolean expired, CacheEntry entry, InvocationContext ctx, FlagAffectedCommand command, Object previousValue, Metadata previousMetadata)
boolean
CacheNotifierImpl. isNotificationAllowed(FlagAffectedCommand cmd, List<CacheEntryListenerInvocation<K,V>> listeners)
void
CacheNotifier. notifyCacheEntriesEvicted(Collection<InternalCacheEntry<? extends K,? extends V>> entries, InvocationContext ctx, FlagAffectedCommand command)
Notifies all registered listeners of aCacheEntriesEvictedEvent
event.void
CacheNotifierImpl. notifyCacheEntriesEvicted(Collection<InternalCacheEntry<? extends K,? extends V>> entries, InvocationContext ctx, FlagAffectedCommand command)
void
CacheNotifier. notifyCacheEntryActivated(K key, V value, boolean pre, InvocationContext ctx, FlagAffectedCommand command)
Notifies all registered listeners of aCacheEntryActivatedEvent
event.void
CacheNotifierImpl. notifyCacheEntryActivated(K key, V value, boolean pre, InvocationContext ctx, FlagAffectedCommand command)
void
CacheNotifier. notifyCacheEntryCreated(K key, V value, Metadata metadata, boolean pre, InvocationContext ctx, FlagAffectedCommand command)
Notifies all registered listeners of aCacheEntryCreatedEvent
event.void
CacheNotifierImpl. notifyCacheEntryCreated(K key, V value, Metadata metadata, boolean pre, InvocationContext ctx, FlagAffectedCommand command)
void
CacheNotifier. notifyCacheEntryInvalidated(K key, V value, Metadata metadata, boolean pre, InvocationContext ctx, FlagAffectedCommand command)
Notifies all registered listeners of aCacheEntryInvalidatedEvent
event.void
CacheNotifierImpl. notifyCacheEntryInvalidated(K key, V value, Metadata metadata, boolean pre, InvocationContext ctx, FlagAffectedCommand command)
void
CacheNotifier. notifyCacheEntryLoaded(K key, V value, boolean pre, InvocationContext ctx, FlagAffectedCommand command)
Notifies all registered listeners of aCacheEntryLoadedEvent
event.void
CacheNotifierImpl. notifyCacheEntryLoaded(K key, V value, boolean pre, InvocationContext ctx, FlagAffectedCommand command)
void
CacheNotifier. notifyCacheEntryModified(K key, V value, Metadata metadata, V previousValue, Metadata previousMetadata, boolean pre, InvocationContext ctx, FlagAffectedCommand command)
Notifies all registered listeners of aCacheEntryModifiedEvent
event.void
CacheNotifierImpl. notifyCacheEntryModified(K key, V value, Metadata metadata, V previousValue, Metadata previousMetadata, boolean pre, InvocationContext ctx, FlagAffectedCommand command)
void
CacheNotifier. notifyCacheEntryPassivated(K key, V value, boolean pre, InvocationContext ctx, FlagAffectedCommand command)
Notifies all registered listeners of aCacheEntryPassivatedEvent
event.void
CacheNotifierImpl. notifyCacheEntryPassivated(K key, V value, boolean pre, InvocationContext ctx, FlagAffectedCommand command)
void
CacheNotifier. notifyCacheEntryRemoved(K key, V previousValue, Metadata previousMetadata, boolean pre, InvocationContext ctx, FlagAffectedCommand command)
Notifies all registered listeners of aCacheEntryRemovedEvent
event.void
CacheNotifierImpl. notifyCacheEntryRemoved(K key, V previousValue, Metadata previousMetadata, boolean pre, InvocationContext ctx, FlagAffectedCommand command)
void
CacheNotifier. notifyCacheEntryVisited(K key, V value, boolean pre, InvocationContext ctx, FlagAffectedCommand command)
Notifies all registered listeners of aCacheEntryVisitedEvent
event.void
CacheNotifierImpl. notifyCacheEntryVisited(K key, V value, boolean pre, InvocationContext ctx, FlagAffectedCommand command)
-