Uses of Interface
org.infinispan.loaders.modifications.Modification

Packages that use Modification
org.infinispan.loaders This package contains loaders and stores, which are used for overflow or persistence. 
org.infinispan.loaders.bdbje This package contains a CacheStore implementation based on Oracle's BDBJE storage engine. 
org.infinispan.loaders.decorators   
org.infinispan.loaders.jdbm This package contains a CacheStore implementation based on persisting to JDBM. 
org.infinispan.loaders.modifications   
 

Uses of Modification in org.infinispan.loaders
 

Method parameters in org.infinispan.loaders with type arguments of type Modification
protected  void AbstractCacheStore.applyModifications(List<? extends Modification> mods)
           
 void CacheStore.prepare(List<? extends Modification> modifications, GlobalTransaction tx, boolean isOnePhase)
          Issues a prepare call with a set of modifications to be applied to the cache store
 void AbstractCacheStore.prepare(List<? extends Modification> mods, GlobalTransaction tx, boolean isOnePhase)
           
 

Uses of Modification in org.infinispan.loaders.bdbje
 

Method parameters in org.infinispan.loaders.bdbje with type arguments of type Modification
protected  void BdbjeCacheStore.applyModifications(List<? extends Modification> mods)
          Perform the mods atomically by creating a worker and invoking them in TransactionRunner.run(com.sleepycat.collections.TransactionWorker).
protected  void BdbjeCacheStore.prepare(List<? extends Modification> mods, GlobalTransaction tx)
          Looks up the SleepyCat transaction associated with tx.
 void BdbjeCacheStore.prepare(List<? extends Modification> mods, GlobalTransaction tx, boolean isOnePhase)
          Issues a prepare call with a set of modifications to be applied to the cache store delegates to BdbjeCacheStore.applyModifications(java.util.List), if isOnePhase.
 

Constructor parameters in org.infinispan.loaders.bdbje with type arguments of type Modification
ModificationsTransactionWorker(CacheStore store, List<? extends Modification> mods)
          Associates Modifications that will be applied to the supplied CacheStore
 

Uses of Modification in org.infinispan.loaders.decorators
 

Method parameters in org.infinispan.loaders.decorators with type arguments of type Modification
protected  void AsyncStore.applyModificationsSync(List<Modification> mods)
           
 void SingletonStore.prepare(List<? extends Modification> list, GlobalTransaction tx, boolean isOnePhase)
           
 void ReadOnlyStore.prepare(List<? extends Modification> list, GlobalTransaction tx, boolean isOnePhase)
           
 void ChainingCacheStore.prepare(List<? extends Modification> list, GlobalTransaction tx, boolean isOnePhase)
           
 void AbstractDelegatingStore.prepare(List<? extends Modification> list, GlobalTransaction tx, boolean isOnePhase)
           
 

Uses of Modification in org.infinispan.loaders.jdbm
 

Method parameters in org.infinispan.loaders.jdbm with type arguments of type Modification
protected  void JdbmCacheStore.applyModifications(List<? extends Modification> mods)
           
 

Uses of Modification in org.infinispan.loaders.modifications
 

Classes in org.infinispan.loaders.modifications that implement Modification
 class Clear
          Represents a CacheStore.clear() modification
 class PurgeExpired
           
 class Remove
          Represents a CacheStore.remove(Object) modification
 class Store
          Modification representing CacheStore.store(org.infinispan.container.entries.InternalCacheEntry)
 



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