Package | Description |
---|---|
org.infinispan.commands |
Commands that operate on the cache, either locally or remotely.
|
org.infinispan.commands.tx |
Commands that represent transactional lifecycle transitions.
|
org.infinispan.commands.tx.totalorder | |
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 |
Infinispan is designed around a set of interceptors around a data container.
|
org.infinispan.interceptors.distribution | |
org.infinispan.remoting.responses |
Abstractions of the different response types allowed during RPC.
|
org.infinispan.statetransfer |
Transfer of state to new caches in a cluster.
|
org.infinispan.transaction |
JTA transaction support.
|
org.infinispan.transaction.xa |
XA transaction support.
|
org.infinispan.transaction.xa.recovery | |
org.infinispan.xsite |
Modifier and Type | Method and Description |
---|---|
PrepareCommand |
CommandsFactoryImpl.buildPrepareCommand(GlobalTransaction gtx,
List<WriteCommand> modifications,
boolean onePhaseCommit) |
PrepareCommand |
CommandsFactory.buildPrepareCommand(GlobalTransaction gtx,
List<WriteCommand> modifications,
boolean onePhaseCommit)
Builds a PrepareCommand
|
VersionedPrepareCommand |
CommandsFactoryImpl.buildVersionedPrepareCommand(GlobalTransaction gtx,
List<WriteCommand> modifications,
boolean onePhase) |
VersionedPrepareCommand |
CommandsFactory.buildVersionedPrepareCommand(GlobalTransaction gtx,
List<WriteCommand> modifications,
boolean onePhase)
Builds a VersionedPrepareCommand
|
Modifier and Type | Field and Description |
---|---|
protected WriteCommand[] |
PrepareCommand.modifications |
Modifier and Type | Method and Description |
---|---|
WriteCommand[] |
PrepareCommand.getModifications() |
Constructor and Description |
---|
PrepareCommand(String cacheName,
GlobalTransaction gtx,
boolean onePhaseCommit,
WriteCommand... modifications) |
Constructor and Description |
---|
PrepareCommand(String cacheName,
GlobalTransaction gtx,
List<WriteCommand> commands,
boolean onePhaseCommit) |
VersionedPrepareCommand(String cacheName,
GlobalTransaction gtx,
List<WriteCommand> modifications,
boolean onePhase) |
Modifier and Type | Method and Description |
---|---|
WriteCommand[] |
TotalOrderPrepareCommand.getModifications() |
Constructor and Description |
---|
TotalOrderNonVersionedPrepareCommand(String cacheName,
GlobalTransaction gtx,
WriteCommand... modifications) |
Constructor and Description |
---|
TotalOrderNonVersionedPrepareCommand(String cacheName,
GlobalTransaction gtx,
List<WriteCommand> commands) |
TotalOrderVersionedPrepareCommand(String cacheName,
GlobalTransaction gtx,
List<WriteCommand> modifications,
boolean onePhase) |
Modifier and Type | Interface and Description |
---|---|
interface |
DataWriteCommand
Mixes features from DataCommand and WriteCommand
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractDataWriteCommand
Stuff common to WriteCommands
|
class |
ApplyDeltaCommand |
class |
ClearCommand |
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 by
BasicCache.put(Object, Object) |
class |
PutMapCommand |
class |
RemoveCommand |
class |
ReplaceCommand |
Modifier and Type | Method and Description |
---|---|
List<WriteCommand> |
RemoteTxInvocationContext.getModifications() |
List<WriteCommand> |
LocalTxInvocationContext.getModifications() |
List<WriteCommand> |
TxInvocationContext.getModifications()
Returns the modifications performed in the scope of the current transaction.
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
ClusteringInterceptor.ignorePreviousValueOnBackup(WriteCommand command,
InvocationContext ctx)
For conditional operations (replace, remove, put if absent) Used only for optimistic transactional caches, to solve the following situation:
|
Modifier and Type | Method and Description |
---|---|
protected void |
NonTxDistributionInterceptor.remoteGetBeforeWrite(InvocationContext ctx,
WriteCommand command,
org.infinispan.interceptors.distribution.BaseDistributionInterceptor.RecipientGenerator keygen) |
protected abstract void |
BaseDistributionInterceptor.remoteGetBeforeWrite(InvocationContext ctx,
WriteCommand command,
org.infinispan.interceptors.distribution.BaseDistributionInterceptor.RecipientGenerator keygen) |
protected void |
TxDistributionInterceptor.remoteGetBeforeWrite(InvocationContext ctx,
WriteCommand command,
org.infinispan.interceptors.distribution.BaseDistributionInterceptor.RecipientGenerator keygen) |
Modifier and Type | Method and Description |
---|---|
protected Response |
NoReturnValuesDistributionResponseGenerator.handleWriteCommand(WriteCommand wc,
Object returnValue) |
protected Response |
DistributionResponseGenerator.handleWriteCommand(WriteCommand wc,
Object returnValue) |
Modifier and Type | Method and Description |
---|---|
WriteCommand[] |
TransactionInfo.getModifications() |
Constructor and Description |
---|
TransactionInfo(GlobalTransaction globalTransaction,
int topologyId,
WriteCommand[] modifications,
Set<Object> lockedKeys) |
Modifier and Type | Field and Description |
---|---|
protected List<WriteCommand> |
AbstractCacheTransaction.modifications |
Modifier and Type | Method and Description |
---|---|
List<WriteCommand> |
AbstractCacheTransaction.getAllModifications() |
List<WriteCommand> |
AbstractCacheTransaction.getModifications() |
Modifier and Type | Method and Description |
---|---|
void |
LocalTransaction.addModification(WriteCommand mod) |
RemoteTransaction |
TransactionTable.getOrCreateRemoteTransaction(GlobalTransaction globalTx,
WriteCommand[] modifications)
Returns an existing remote transaction or creates one if none exists.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractCacheTransaction.setModifications(List<WriteCommand> modifications) |
Constructor and Description |
---|
RemoteTransaction(WriteCommand[] modifications,
GlobalTransaction tx,
int topologyId,
Equivalence<Object> keyEquivalence) |
Modifier and Type | Method and Description |
---|---|
List<WriteCommand> |
CacheTransaction.getAllModifications()
Returns all the modifications visible within the current transaction, including those using Flag#CACHE_MODE_LOCAL.
|
List<WriteCommand> |
CacheTransaction.getModifications()
Returns the modifications visible within the current transaction.
|
Modifier and Type | Method and Description |
---|---|
RemoteTransaction |
TransactionFactory.newRemoteTransaction(WriteCommand[] modifications,
GlobalTransaction tx,
int topologyId) |
abstract RemoteTransaction |
TransactionFactory.TxFactoryEnum.newRemoteTransaction(WriteCommand[] modifications,
GlobalTransaction tx,
int topologyId,
Equivalence<Object> keyEquivalence) |
Constructor and Description |
---|
RecoveryAwareRemoteTransaction(WriteCommand[] modifications,
GlobalTransaction tx,
int topologyId,
Equivalence<Object> keyEquivalence) |
Modifier and Type | Method and Description |
---|---|
BackupResponse |
BackupSenderImpl.backupWrite(WriteCommand command) |
BackupResponse |
BackupSender.backupWrite(WriteCommand command) |
Copyright © 2014 JBoss, a division of Red Hat. All Rights Reserved.