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

Packages that use WriteCommand
org.infinispan.commands.tx   
org.infinispan.commands.write   
org.infinispan.context   
org.infinispan.interceptors   
org.infinispan.transaction   
 

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()
           
 

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

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

Constructor parameters in org.infinispan.commands.tx with type arguments of type WriteCommand
PrepareCommand(GlobalTransaction gtx, List<WriteCommand> commands, Address localAddress, boolean onePhaseCommit)
           
 

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 ClearCommand
           
 class EvictCommand
           
 class InvalidateCommand
          Removes an entry from memory - never removes the entry.
 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
           
 

Uses of WriteCommand in org.infinispan.context
 

Methods in org.infinispan.context that return types with arguments of type WriteCommand
 List<WriteCommand> TransactionContextImpl.getLocalModifications()
           
 List<WriteCommand> TransactionContext.getLocalModifications()
          Returns all modifications that have been invoked with the LOCAL cache mode option.
 List<WriteCommand> TransactionContextImpl.getModifications()
           
 List<WriteCommand> TransactionContext.getModifications()
          Returns all modifications.
 

Methods in org.infinispan.context with parameters of type WriteCommand
 void TransactionContextImpl.addLocalModification(WriteCommand command)
           
 void TransactionContext.addLocalModification(WriteCommand command)
          Adds a modification to the local modification list.
 void TransactionContextImpl.addModification(WriteCommand command)
           
 void TransactionContext.addModification(WriteCommand command)
          Adds a modification to the modification list.
 

Uses of WriteCommand in org.infinispan.interceptors
 

Method parameters in org.infinispan.interceptors with type arguments of type WriteCommand
protected  PrepareCommand TxInterceptor.buildPrepareCommand(GlobalTransaction gtx, List<WriteCommand> modifications, boolean onePhaseCommit)
           
protected  void TxInterceptor.runCommitPhase(InvocationContext ctx, GlobalTransaction gtx, List<WriteCommand> modifications, boolean onePhaseCommit)
          creates a commit()
 Object TxInterceptor.runPreparePhase(InvocationContext ctx, GlobalTransaction gtx, List<WriteCommand> modifications)
          Handles a local prepare - invoked by the sync handler.
 

Uses of WriteCommand in org.infinispan.transaction
 

Methods in org.infinispan.transaction that return WriteCommand
 WriteCommand[] TransactionLog.LogEntry.getModifications()
           
 

Methods in org.infinispan.transaction with parameters of type WriteCommand
 void TransactionLog.logNoTxWrite(WriteCommand write)
           
 

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

Constructors in org.infinispan.transaction with parameters of type WriteCommand
TransactionLog.LogEntry(GlobalTransaction transaction, WriteCommand... modifications)
           
 



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