ehcache

Uses of Interface
net.sf.ehcache.transaction.Command

Packages that use Command
net.sf.ehcache.transaction This package contains classes for controlling cache operations (for transactional use) 
net.sf.ehcache.transaction.xa This package contains the functionality to provide XA support to a transactional Cache. 
 

Uses of Command in net.sf.ehcache.transaction
 

Subinterfaces of Command in net.sf.ehcache.transaction
 interface StoreWriteCommand
          Marker interface for Command that mutate the Store on execute(net.sf.ehcache.store.Store)
 

Classes in net.sf.ehcache.transaction that implement Command
 class StoreExpireAllElementsCommand
          Represents an expireElements operation to be executed on a Store.
 class StorePutCommand
          Represents a Store.put(net.sf.ehcache.Element) put} operation to be executed on a Store.
 class StorePutWithWriterCommandImpl
           
 class StoreRemoveAllCommand
          Represents a removeAll operation to be executed on a Store.
 class StoreRemoveCommand
          Represents a remove operation to be executed on a Store.
 class StoreRemoveWithWriterCommand
           
 

Methods in net.sf.ehcache.transaction with parameters of type Command
 void TransactionContext.addCommand(Command command, Element element)
          Add a command to the current TransactionContext
 

Uses of Command in net.sf.ehcache.transaction.xa
 

Subinterfaces of Command in net.sf.ehcache.transaction.xa
 interface VersionAwareCommand
          A more specialized type of Command, that is potentially aware of a version of the Element involved in its execution against the Store.
 

Classes in net.sf.ehcache.transaction.xa that implement Command
 class VersionAwareWrapper
          Wraps a Command, that will first be checked against the optimistic locking strategy before being executed against the Store.
 

Methods in net.sf.ehcache.transaction.xa with parameters of type Command
 void XATransactionContext.addCommand(Command command, Element element)
          Add a command to the current TransactionContext
 

Constructors in net.sf.ehcache.transaction.xa with parameters of type Command
VersionAwareWrapper(Command command)
          Constructor
VersionAwareWrapper(Command command, long version, java.lang.Object key)
          Constructor
 


ehcache

true