Uses of Interface
org.jboss.cache.commands.WriteCommand

Packages that use WriteCommand
org.jboss.cache.buddyreplication   
org.jboss.cache.commands   
org.jboss.cache.commands.legacy   
org.jboss.cache.commands.legacy.write   
org.jboss.cache.commands.tx   
org.jboss.cache.commands.write   
org.jboss.cache.interceptors   
org.jboss.cache.transaction   
 

Uses of WriteCommand in org.jboss.cache.buddyreplication
 

Methods in org.jboss.cache.buddyreplication that return types with arguments of type WriteCommand
 List<WriteCommand> Fqn2BuddyFqnVisitor.transformBatch(List<WriteCommand> toTransform)
           
 

Method parameters in org.jboss.cache.buddyreplication with type arguments of type WriteCommand
 List<WriteCommand> Fqn2BuddyFqnVisitor.transformBatch(List<WriteCommand> toTransform)
           
 

Uses of WriteCommand in org.jboss.cache.commands
 

Subinterfaces of WriteCommand in org.jboss.cache.commands
 interface VersionedDataCommand
          Just like a DataCommand, except that these are versioned and reversible too.
 

Methods in org.jboss.cache.commands with parameters of type WriteCommand
 PrepareCommand CommandsFactoryImpl.buildPrepareCommand(GlobalTransaction gtx, WriteCommand command, boolean onePhaseCommit)
           
 PrepareCommand CommandsFactory.buildPrepareCommand(GlobalTransaction gtx, WriteCommand command, boolean onePhaseCommit)
           
 

Method parameters in org.jboss.cache.commands with type arguments of type WriteCommand
 OptimisticPrepareCommand CommandsFactoryImpl.buildOptimisticPrepareCommand(GlobalTransaction gtx, List<WriteCommand> modifications, org.jgroups.Address address, boolean onePhaseCommit)
           
 OptimisticPrepareCommand CommandsFactory.buildOptimisticPrepareCommand(GlobalTransaction gtx, List<WriteCommand> modifications, org.jgroups.Address address, boolean onePhaseCommit)
           
 PrepareCommand CommandsFactoryImpl.buildPrepareCommand(GlobalTransaction gtx, List<WriteCommand> modifications, org.jgroups.Address address, boolean onePhaseCommit)
           
 PrepareCommand CommandsFactory.buildPrepareCommand(GlobalTransaction gtx, List<WriteCommand> modifications, org.jgroups.Address address, boolean onePhaseCommit)
           
 

Uses of WriteCommand in org.jboss.cache.commands.legacy
 

Subinterfaces of WriteCommand in org.jboss.cache.commands.legacy
 interface ReversibleCommand
          Deprecated. will be removed along with optimistic and pessimistic locking.
 

Uses of WriteCommand in org.jboss.cache.commands.legacy.write
 

Classes in org.jboss.cache.commands.legacy.write that implement WriteCommand
 class CreateNodeCommand
          Deprecated. will be removed when pessimistic locking is removed.
 class PessClearDataCommand
          Deprecated. will be removed along with optimistic and pessimistic locking.
 class PessMoveCommand
          Deprecated. will be removed along with optimistic and pessimistic locking.
 class PessPutDataMapCommand
          Deprecated. will be removed along with optimistic and pessimistic locking.
 class PessPutForExternalReadCommand
          Deprecated. will be removed along with optimistic and pessimistic locking.
 class PessPutKeyValueCommand
          Deprecated. will be removed along with optimistic and pessimistic locking.
 class PessRemoveKeyCommand
          Deprecated. will be removed along with optimistic and pessimistic locking.
 class PessRemoveNodeCommand
          Deprecated. will be removed along with optimistic and pessimistic locking.
 class VersionedInvalidateCommand
          Deprecated. will be removed along with optimistic and pessimistic locking.
 

Uses of WriteCommand in org.jboss.cache.commands.tx
 

Fields in org.jboss.cache.commands.tx with type parameters of type WriteCommand
protected  List<WriteCommand> PrepareCommand.modifications
           
 

Methods in org.jboss.cache.commands.tx that return types with arguments of type WriteCommand
 List<WriteCommand> PrepareCommand.getModifications()
           
 

Method parameters in org.jboss.cache.commands.tx with type arguments of type WriteCommand
 void PrepareCommand.removeModifications(Collection<WriteCommand> modificationsToRemove)
           
 

Constructor parameters in org.jboss.cache.commands.tx with type arguments of type WriteCommand
OptimisticPrepareCommand(GlobalTransaction gtx, List<WriteCommand> modifications, org.jgroups.Address address, boolean onePhaseCommit)
           
PrepareCommand(GlobalTransaction gtx, List<WriteCommand> modifications, org.jgroups.Address localAddress, boolean onePhaseCommit)
           
 

Uses of WriteCommand in org.jboss.cache.commands.write
 

Classes in org.jboss.cache.commands.write that implement WriteCommand
 class AbstractVersionedDataCommand
          Base version of DataCommand which handles common behaviour
 class ClearDataCommand
          Implements functionality defined by Cache.clearData(String)}
 class MoveCommand
          Implements functionality defined by Cache.move(org.jboss.cache.Fqn, org.jboss.cache.Fqn)
 class PutDataMapCommand
          Implements functionality defined by Cache.put(String, java.util.Map).
 class PutForExternalReadCommand
          Represents the Cache.putForExternalRead(org.jboss.cache.Fqn, Object, Object) method call.
 class PutKeyValueCommand
          Implements functionality defined by Cache.put(org.jboss.cache.Fqn, Object, Object).
 class RemoveKeyCommand
          Implements functionality defined by Cache.remove(org.jboss.cache.Fqn, Object)
 class RemoveNodeCommand
          Implements functionality defined by Cache.removeNode(org.jboss.cache.Fqn)
 

Uses of WriteCommand in org.jboss.cache.interceptors
 

Fields in org.jboss.cache.interceptors with type parameters of type WriteCommand
protected  Map<GlobalTransaction,List<WriteCommand>> InvalidationInterceptor.txMods
           
 

Method parameters in org.jboss.cache.interceptors with type arguments of type WriteCommand
 Object TxInterceptor.runPreparePhase(InvocationContext ctx, GlobalTransaction gtx, List<WriteCommand> modifications)
          Handles a local prepare - invoked by the sync handler.
 

Uses of WriteCommand in org.jboss.cache.transaction
 

Methods in org.jboss.cache.transaction that return types with arguments of type WriteCommand
 List<WriteCommand> PessimisticTransactionContext.getAllModifications()
          Deprecated.  
 List<WriteCommand> TransactionContext.getLocalModifications()
          Returns all modifications that have been invoked with the LOCAL cache mode option.
 List<WriteCommand> AbstractTransactionContext.getLocalModifications()
           
 List<WriteCommand> TransactionLog.LogEntry.getModifications()
           
 List<WriteCommand> TransactionContext.getModifications()
          Returns all modifications.
 List<WriteCommand> AbstractTransactionContext.getModifications()
           
 

Methods in org.jboss.cache.transaction with parameters of type WriteCommand
 void TransactionContext.addLocalModification(WriteCommand command)
          Adds a modification to the local modification list.
 void PessimisticTransactionContext.addLocalModification(WriteCommand command)
          Deprecated.  
 void AbstractTransactionContext.addLocalModification(WriteCommand command)
           
 void TransactionContext.addModification(WriteCommand command)
          Adds a modification to the modification list.
 void PessimisticTransactionContext.addModification(WriteCommand command)
          Deprecated.  
 void AbstractTransactionContext.addModification(WriteCommand command)
           
 void TransactionLog.logNoTxWrite(WriteCommand write)
           
 

Method parameters in org.jboss.cache.transaction with type arguments of type WriteCommand
 void TransactionLog.logOnePhaseCommit(GlobalTransaction gtx, List<WriteCommand> modifications)
           
 

Constructor parameters in org.jboss.cache.transaction with type arguments of type WriteCommand
TransactionLog.LogEntry(GlobalTransaction transaction, List<WriteCommand> modifications)
           
 



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