| Package | Description |
|---|---|
| org.infinispan |
This is the core of Infinispan, a distributed, transactional, highly scalable data grid
platform.
|
| org.infinispan.cache.impl | |
| org.infinispan.commands |
Commands that operate on the cache, either locally or remotely.
|
| 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.interceptors.impl |
Basic interceptors
|
| org.infinispan.interceptors.locking |
Interceptors dealing with locking.
|
| org.infinispan.security.impl | |
| org.infinispan.statetransfer |
Transfer of state to new caches in a cluster.
|
| org.infinispan.transaction.impl |
| Modifier and Type | Method and Description |
|---|---|
AdvancedCache<K,V> |
AdvancedCache.withFlags(Flag... flags)
A method that adds flags to any API call.
|
default AdvancedCache<K,V> |
AdvancedCache.withFlags(Flag flag)
An alternative to
AdvancedCache.withFlags(Flag...) optimized for a single flag. |
| Modifier and Type | Method and Description |
|---|---|
default AdvancedCache<K,V> |
AdvancedCache.withFlags(Collection<Flag> flags)
An alternative to
AdvancedCache.withFlags(Flag...) not requiring array allocation. |
| Modifier and Type | Method and Description |
|---|---|
AdvancedCache<K,V> |
AbstractDelegatingAdvancedCache.withFlags(Flag... flags) |
AdvancedCache<K,V> |
CacheImpl.withFlags(Flag... flags) |
AdvancedCache<K,V> |
DecoratedCache.withFlags(Flag... flags) |
AdvancedCache<K,V> |
SimpleCacheImpl.withFlags(Flag... flags) |
AdvancedCache<K,V> |
StatsCollectingCache.withFlags(Flag... flags) |
AdvancedCache<K,V> |
DecoratedCache.withFlags(Flag flag) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
AbstractDelegatingAdvancedCache.putForExternalRead(K key,
V value,
EnumSet<Flag> flags,
ClassLoader classLoader) |
protected void |
AbstractDelegatingAdvancedCache.putForExternalRead(K key,
V value,
Metadata metadata,
EnumSet<Flag> flags,
ClassLoader classLoader) |
AdvancedCache<K,V> |
AbstractDelegatingAdvancedCache.withFlags(Collection<Flag> flags) |
AdvancedCache<K,V> |
CacheImpl.withFlags(Collection<Flag> flags) |
AdvancedCache<K,V> |
DecoratedCache.withFlags(Collection<Flag> flags) |
AdvancedCache<K,V> |
SimpleCacheImpl.withFlags(Collection<Flag> flags) |
| Modifier and Type | Method and Description |
|---|---|
default Set<Flag> |
FlagAffectedCommand.getFlags() |
| Modifier and Type | Method and Description |
|---|---|
default void |
FlagAffectedCommand.addFlag(Flag flag)
Deprecated.
Since 9.0, please use
FlagAffectedCommand.addFlags(long) with a FlagBitSets constant instead. |
default boolean |
FlagAffectedCommand.hasFlag(Flag flag)
Deprecated.
Since 9.0, please use
FlagAffectedCommand.hasAnyFlag(long) with a FlagBitSets constant instead. |
| Modifier and Type | Method and Description |
|---|---|
default void |
FlagAffectedCommand.addFlags(Set<Flag> flags)
Deprecated.
Since 9.0, please use
FlagAffectedCommand.addFlags(long) with a FlagBitSets constant instead. |
default void |
FlagAffectedCommand.setFlags(Set<Flag> flags)
Deprecated.
Since 9.0, please use
FlagAffectedCommand.setFlagsBitSet(long) instead. |
| Modifier and Type | Method and 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.
|
| Modifier and Type | Method and Description |
|---|---|
Set<Class<? extends Flag>> |
Flag.Externalizer.getTypeClasses() |
| Modifier and Type | Method and Description |
|---|---|
void |
Flag.Externalizer.writeObject(ObjectOutput output,
Flag flag) |
| Modifier and Type | Method and Description |
|---|---|
static Flag |
FlagBitSets.extractStateTransferFlag(InvocationContext ctx,
FlagAffectedCommand command) |
| Modifier and Type | Method and Description |
|---|---|
protected CompletionStage<Void> |
VersionedEntryWrappingInterceptor.commitContextEntry(CacheEntry<?,?> entry,
InvocationContext ctx,
FlagAffectedCommand command,
Flag stateTransferFlag,
boolean l1Invalidation) |
protected CompletionStage<Void> |
EntryWrappingInterceptor.commitContextEntry(CacheEntry<?,?> entry,
InvocationContext ctx,
FlagAffectedCommand command,
Flag stateTransferFlag,
boolean l1Invalidation) |
| Modifier and Type | Method and Description |
|---|---|
CompletionStage<Void> |
ClusteringDependentLogic.commitEntry(CacheEntry entry,
FlagAffectedCommand command,
InvocationContext ctx,
Flag trackFlag,
boolean l1Invalidation)
Commits the entry to the data container.
|
CompletionStage<Void> |
ClusteringDependentLogic.AbstractClusteringDependentLogic.commitEntry(CacheEntry entry,
FlagAffectedCommand command,
InvocationContext ctx,
Flag trackFlag,
boolean l1Invalidation) |
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.LocalLogic.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.ReplicationLogic.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 CompletableFuture<Void> |
ClusteringDependentLogic.ScatteredLogic.commitSingleEntry(CacheEntry entry,
FlagAffectedCommand command,
InvocationContext ctx,
Flag trackFlag,
boolean l1Invalidation) |
| Modifier and Type | Method and Description |
|---|---|
AdvancedCache<K,V> |
SecureCacheImpl.withFlags(Flag... flags) |
| Modifier and Type | Method and Description |
|---|---|
AdvancedCache<K,V> |
SecureCacheImpl.withFlags(Collection<Flag> flags) |
| Modifier and Type | Method and Description |
|---|---|
CompletionStage<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.
|
| Modifier and Type | Method and Description |
|---|---|
Flag |
AbstractCacheTransaction.getStateTransferFlag() |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
AbstractCacheTransaction.setStateTransferFlag(Flag stateTransferFlag) |
void |
LocalTransaction.setStateTransferFlag(Flag stateTransferFlag) |
void |
RemoteTransaction.setStateTransferFlag(Flag stateTransferFlag) |
Copyright © 2022 JBoss by Red Hat. All rights reserved.