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

Packages that use ReversibleCommand
org.jboss.cache.buddyreplication   
org.jboss.cache.commands   
org.jboss.cache.commands.tx   
org.jboss.cache.commands.write   
org.jboss.cache.factories   
org.jboss.cache.interceptors   
org.jboss.cache.transaction   
 

Uses of ReversibleCommand in org.jboss.cache.buddyreplication
 

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

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

Uses of ReversibleCommand in org.jboss.cache.commands
 

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

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

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

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

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

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

Classes in org.jboss.cache.commands.write that implement ReversibleCommand
 class AbstractVersionedDataCommand
          Base version of DataCommand which handles common behaviour
 class CreateNodeCommand
          Command that creates a node.
 class EvictCommand
          Implements functionality defined by Cache.evict(org.jboss.cache.Fqn)
 class InvalidateCommand
          Very much like an evict(), except that regardless of whether there is a child present, this call will never remove the node from memory - just remove its contents.
 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 PutKeyValueCommand
          Implements functionality defined by Cache.put(org.jboss.cache.Fqn, Object, Object).
 class RemoveDataCommand
          Implements functionality defined by Cache.remove(String, 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 ReversibleCommand in org.jboss.cache.factories
 

Methods in org.jboss.cache.factories with parameters of type ReversibleCommand
 OptimisticPrepareCommand CommandsFactory.buildOptimisticPrepareCommand(GlobalTransaction gtx, ReversibleCommand command)
           
 PrepareCommand CommandsFactory.buildPrepareCommand(GlobalTransaction gtx, ReversibleCommand command, boolean onePhaseCommit)
           
 

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

Uses of ReversibleCommand in org.jboss.cache.interceptors
 

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

Method parameters in org.jboss.cache.interceptors with type arguments of type ReversibleCommand
 Object TxInterceptor.runPreparePhase(InvocationContext ctx, GlobalTransaction gtx, List<ReversibleCommand> modifications)
          Handles a local prepare - invoked by the sync handler.
protected  void TxInterceptor.runRollbackPhase(InvocationContext ctx, GlobalTransaction gtx, Transaction tx, List<ReversibleCommand> modifications)
          creates a rollback() MethodCall and feeds it to handleCommitRollback();
 

Uses of ReversibleCommand in org.jboss.cache.transaction
 

Methods in org.jboss.cache.transaction that return types with arguments of type ReversibleCommand
 List<ReversibleCommand> TransactionEntry.getCacheLoaderModifications()
           
 List<ReversibleCommand> TransactionEntry.getModifications()
          Returns all modifications.
 

Methods in org.jboss.cache.transaction with parameters of type ReversibleCommand
 void TransactionTable.addCacheLoaderModification(GlobalTransaction gtx, ReversibleCommand m)
           
 void TransactionEntry.addCacheLoaderModification(ReversibleCommand command)
           
 void TransactionTable.addModification(GlobalTransaction gtx, ReversibleCommand m)
          Adds a motification to the global transaction.
 void TransactionEntry.addModification(ReversibleCommand command)
          Adds a modification to the modification list.
 



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