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.write |
Commands that alter the state of the cache.
|
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.distribution |
Classes relating to the distributed cache mode.
|
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.util.logging |
Infinispan's logging abstractions that delegate to either JDK or Log4J logging engines.
|
Modifier and Type | Method and Description |
---|---|
PrepareCommand |
CommandsFactory.buildPrepareCommand(GlobalTransaction gtx,
List<WriteCommand> modifications,
boolean onePhaseCommit)
Builds a PrepareCommand
|
PrepareCommand |
CommandsFactoryImpl.buildPrepareCommand(GlobalTransaction gtx,
List<WriteCommand> modifications,
boolean onePhaseCommit) |
VersionedPrepareCommand |
CommandsFactory.buildVersionedPrepareCommand(GlobalTransaction gtx,
List<WriteCommand> modifications,
boolean onePhase)
Builds a VersionedPrepareCommand
|
VersionedPrepareCommand |
CommandsFactoryImpl.buildVersionedPrepareCommand(GlobalTransaction gtx,
List<WriteCommand> modifications,
boolean onePhase) |
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 | 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
Map.put(Object, Object) |
class |
PutMapCommand |
class |
RemoveCommand |
class |
ReplaceCommand |
class |
VersionedPutKeyValueCommand
A form of
PutKeyValueCommand that also applies a version to the entry created. |
Modifier and Type | Method and Description |
---|---|
List<WriteCommand> |
TransactionalInvocationContextFlagsOverride.getModifications() |
Modifier and Type | Method and Description |
---|---|
List<WriteCommand> |
RemoteTxInvocationContext.getModifications() |
List<WriteCommand> |
LocalTxInvocationContext.getModifications() |
List<WriteCommand> |
TxInvocationContext.getModifications()
Returns all the modifications performed in the scope of the current transaction.
|
Modifier and Type | Method and Description |
---|---|
List<WriteCommand> |
RemoteTransactionLogDetails.getModifications() |
Constructor and Description |
---|
RemoteTransactionLogDetails(boolean drainNextCallWithoutLock,
List<WriteCommand> modifications,
Collection<PrepareCommand> pendingPreparesMap) |
Modifier and Type | Method and Description |
---|---|
protected Response |
DistributionResponseGenerator.handleWriteCommand(WriteCommand wc,
Object returnValue) |
protected Response |
NoReturnValuesDistributionResponseGenerator.handleWriteCommand(WriteCommand wc,
Object returnValue) |
Modifier and Type | Method and Description |
---|---|
boolean |
StateTransferLockImpl.acquireForCommand(InvocationContext ctx,
WriteCommand command) |
boolean |
StateTransferLock.acquireForCommand(InvocationContext ctx,
WriteCommand command) |
void |
StateTransferLockImpl.releaseForCommand(InvocationContext ctx,
WriteCommand command) |
void |
StateTransferLock.releaseForCommand(InvocationContext ctx,
WriteCommand command) |
Modifier and Type | Field and Description |
---|---|
protected List<WriteCommand> |
AbstractCacheTransaction.modifications |
Modifier and Type | Method and Description |
---|---|
List<WriteCommand> |
AbstractCacheTransaction.getModifications() |
Modifier and Type | Method and Description |
---|---|
void |
LocalTransaction.addModification(WriteCommand mod) |
RemoteTransaction |
TransactionTable.createRemoteTransaction(GlobalTransaction globalTx,
WriteCommand[] modifications)
Creates and register a
RemoteTransaction with no modifications. |
void |
AbstractCacheTransaction.setModifications(WriteCommand[] modifications) |
Modifier and Type | Method and Description |
---|---|
void |
LocalTransaction.setModifications(List<WriteCommand> modifications) |
Constructor and Description |
---|
RemoteTransaction(WriteCommand[] modifications,
GlobalTransaction tx,
int viewId) |
Modifier and Type | Method and Description |
---|---|
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 viewId) |
abstract RemoteTransaction |
TransactionFactory.TxFactoryEnum.newRemoteTransaction(WriteCommand[] modifications,
GlobalTransaction tx,
int viewId) |
Constructor and Description |
---|
RecoveryAwareRemoteTransaction(WriteCommand[] modifications,
GlobalTransaction tx,
int viewId) |
Modifier and Type | Method and Description |
---|---|
void |
Log.exceptionWhenReplaying(WriteCommand cmd,
Exception e) |
Copyright © 2012 JBoss, a division of Red Hat. All Rights Reserved.