Uses of Interface
org.infinispan.commands.write.WriteCommand

Packages that use WriteCommand
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. 
 

Uses of WriteCommand in org.infinispan.commands
 

Method parameters in org.infinispan.commands with type arguments of type WriteCommand
 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
 

Uses of WriteCommand in org.infinispan.commands.tx
 

Fields in org.infinispan.commands.tx declared as WriteCommand
protected  WriteCommand[] PrepareCommand.modifications
           
 

Methods in org.infinispan.commands.tx that return WriteCommand
 WriteCommand[] PrepareCommand.getModifications()
           
 

Constructors in org.infinispan.commands.tx with parameters of type WriteCommand
PrepareCommand(String cacheName, GlobalTransaction gtx, boolean onePhaseCommit, WriteCommand... modifications)
           
 

Constructor parameters in org.infinispan.commands.tx with type arguments of type WriteCommand
PrepareCommand(String cacheName, GlobalTransaction gtx, List<WriteCommand> commands, boolean onePhaseCommit)
           
VersionedPrepareCommand(String cacheName, GlobalTransaction gtx, List<WriteCommand> modifications, boolean onePhase)
           
 

Uses of WriteCommand in org.infinispan.commands.write
 

Subinterfaces of WriteCommand in org.infinispan.commands.write
 interface DataWriteCommand
          Mixes features from DataCommand and WriteCommand
 

Classes in org.infinispan.commands.write that implement WriteCommand
 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.
 

Uses of WriteCommand in org.infinispan.context
 

Methods in org.infinispan.context that return types with arguments of type WriteCommand
 List<WriteCommand> TransactionalInvocationContextFlagsOverride.getModifications()
           
 

Uses of WriteCommand in org.infinispan.context.impl
 

Methods in org.infinispan.context.impl that return types with arguments of type WriteCommand
 List<WriteCommand> TxInvocationContext.getModifications()
          Returns all the modifications performed in the scope of the current transaction.
 List<WriteCommand> RemoteTxInvocationContext.getModifications()
           
 List<WriteCommand> LocalTxInvocationContext.getModifications()
           
 

Uses of WriteCommand in org.infinispan.distribution
 

Methods in org.infinispan.distribution that return types with arguments of type WriteCommand
 List<WriteCommand> RemoteTransactionLogDetails.getModifications()
           
 

Constructor parameters in org.infinispan.distribution with type arguments of type WriteCommand
RemoteTransactionLogDetails(boolean drainNextCallWithoutLock, List<WriteCommand> modifications, Collection<PrepareCommand> pendingPreparesMap)
           
 

Uses of WriteCommand in org.infinispan.remoting.responses
 

Methods in org.infinispan.remoting.responses with parameters of type WriteCommand
protected  Response NoReturnValuesDistributionResponseGenerator.handleWriteCommand(WriteCommand wc, Object returnValue)
           
protected  Response DistributionResponseGenerator.handleWriteCommand(WriteCommand wc, Object returnValue)
           
 

Uses of WriteCommand in org.infinispan.statetransfer
 

Methods in org.infinispan.statetransfer with parameters of type WriteCommand
 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)
           
 

Uses of WriteCommand in org.infinispan.transaction
 

Fields in org.infinispan.transaction with type parameters of type WriteCommand
protected  List<WriteCommand> AbstractCacheTransaction.modifications
           
 

Methods in org.infinispan.transaction that return types with arguments of type WriteCommand
 List<WriteCommand> AbstractCacheTransaction.getModifications()
           
 

Methods in org.infinispan.transaction with parameters of type WriteCommand
 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)
           
 

Method parameters in org.infinispan.transaction with type arguments of type WriteCommand
 void LocalTransaction.setModifications(List<WriteCommand> modifications)
           
 

Constructors in org.infinispan.transaction with parameters of type WriteCommand
RemoteTransaction(WriteCommand[] modifications, GlobalTransaction tx, int viewId)
           
 

Uses of WriteCommand in org.infinispan.transaction.xa
 

Methods in org.infinispan.transaction.xa that return types with arguments of type WriteCommand
 List<WriteCommand> CacheTransaction.getModifications()
          Returns the modifications visible within the current transaction.
 

Methods in org.infinispan.transaction.xa with parameters of type WriteCommand
 RemoteTransaction TransactionFactory.newRemoteTransaction(WriteCommand[] modifications, GlobalTransaction tx, int viewId)
           
abstract  RemoteTransaction TransactionFactory.TxFactoryEnum.newRemoteTransaction(WriteCommand[] modifications, GlobalTransaction tx, int viewId)
           
 

Uses of WriteCommand in org.infinispan.transaction.xa.recovery
 

Constructors in org.infinispan.transaction.xa.recovery with parameters of type WriteCommand
RecoveryAwareRemoteTransaction(WriteCommand[] modifications, GlobalTransaction tx, int viewId)
           
 

Uses of WriteCommand in org.infinispan.util.logging
 

Methods in org.infinispan.util.logging with parameters of type WriteCommand
 void Log.exceptionWhenReplaying(WriteCommand cmd, Exception e)
           
 


-->

Copyright © 2012 JBoss, a division of Red Hat. All Rights Reserved.