Uses of Interface
org.jboss.cache.CacheSPI

Packages that use CacheSPI
org.jboss.cache   
org.jboss.cache.buddyreplication   
org.jboss.cache.commands.read   
org.jboss.cache.commands.write   
org.jboss.cache.config   
org.jboss.cache.eviction   
org.jboss.cache.factories   
org.jboss.cache.interceptors   
org.jboss.cache.invocation   
org.jboss.cache.loader   
org.jboss.cache.loader.bdbje   
org.jboss.cache.loader.jdbm   
org.jboss.cache.loader.tcp   
org.jboss.cache.optimistic   
org.jboss.cache.statetransfer   
org.jboss.cache.util   
 

Uses of CacheSPI in org.jboss.cache
 

Methods in org.jboss.cache that return CacheSPI
protected  CacheSPI<K,V> DefaultCacheFactory.createAndWire(Configuration configuration)
           
 CacheSPI UnversionedNode.getCache()
           
 CacheSPI RegionManager.getCache()
           
 CacheSPI<K,V> NodeSPI.getCache()
          Retrieves a reference to the cache in which this Node resides.
 

Methods in org.jboss.cache with parameters of type CacheSPI
 void UnversionedNode.injectDependencies(CacheSPI spi, CommandsFactory commandsFactory, LockStrategyFactory lockStrategyFactory)
           
 

Constructors in org.jboss.cache with parameters of type CacheSPI
ConsoleListener(CacheSPI cache)
          Constructor.
ConsoleListener(CacheSPI cache, boolean startCache, boolean stopCache)
          Constructor.
NodeFactory(CacheSPI<K,V> cache)
          Constructs an instance of the factory
UnversionedNode(Object child_name, Fqn fqn, Map data, boolean mapSafe, CacheSPI cache)
          Constructs a new node with a name, etc.
VersionedNode(Fqn fqn, NodeSPI<K,V> parent, Map<K,V> data, CacheSPI<K,V> cache)
           
 

Uses of CacheSPI in org.jboss.cache.buddyreplication
 

Methods in org.jboss.cache.buddyreplication with parameters of type CacheSPI
 void BuddyManager.injectDependencies(CacheSPI cache, Configuration configuration, RegionManager regionManager, StateTransferManager stateTransferManager, RPCManager rpcManager, Notifier notifier, CommandsFactory factory, DataContainer dataContainer, BuddyFqnTransformer transformer)
           
 

Uses of CacheSPI in org.jboss.cache.commands.read
 

Methods in org.jboss.cache.commands.read with parameters of type CacheSPI
 void GravitateDataCommand.initialize(DataContainer dataContainer, CacheSPI spi, BuddyFqnTransformer transformer)
           
 

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

Fields in org.jboss.cache.commands.write declared as CacheSPI
protected  CacheSPI InvalidateCommand.spi
           
 

Methods in org.jboss.cache.commands.write with parameters of type CacheSPI
 void InvalidateCommand.initialize(CacheSPI cacheSpi, DataContainer dataContainer, Notifier notifier)
           
 

Uses of CacheSPI in org.jboss.cache.config
 

Methods in org.jboss.cache.config with parameters of type CacheSPI
 void ConfigurationComponent.setCache(CacheSPI cache)
          Sets a back-reference to the cache associated with this configuration
 

Uses of CacheSPI in org.jboss.cache.eviction
 

Fields in org.jboss.cache.eviction declared as CacheSPI
protected  CacheSPI BaseEvictionPolicy.cache_
           
 

Methods in org.jboss.cache.eviction that return CacheSPI
 CacheSPI NullEvictionPolicy.getCache()
           
 CacheSPI EvictionPolicy.getCache()
           
 CacheSPI BaseEvictionPolicy.getCache()
           
 

Methods in org.jboss.cache.eviction with parameters of type CacheSPI
 void NullEvictionPolicy.setCache(CacheSPI cache)
           
 void LRUPolicy.setCache(CacheSPI cache)
           
 void EvictionPolicy.setCache(CacheSPI cache)
          Method called to set the cache in this implementation.
 void BaseEvictionPolicy.setCache(CacheSPI cache)
           
 

Uses of CacheSPI in org.jboss.cache.factories
 

Methods in org.jboss.cache.factories with parameters of type CacheSPI
 void CommandsFactory.initialize(RPCManager rpc, DataContainer dataContainer, Notifier notifier, BuddyManager buddyManager, InterceptorChain invoker, TransactionTable transactionTable, CacheSPI cacheSpi, Configuration configuration, TransactionManager txManager, BuddyFqnTransformer buddyFqnTransformer)
           
 

Constructors in org.jboss.cache.factories with parameters of type CacheSPI
BootstrapFactory(CacheSPI cacheSPI, Configuration configuration, ComponentRegistry componentRegistry)
           
ComponentRegistry(Configuration configuration, CacheSPI cache)
          Creates an instance of the component registry.
 

Uses of CacheSPI in org.jboss.cache.interceptors
 

Fields in org.jboss.cache.interceptors declared as CacheSPI
protected  CacheSPI<?,?> Interceptor.cache
          Deprecated.  
 

Methods in org.jboss.cache.interceptors with parameters of type CacheSPI
 void DataGravitatorInterceptor.injectComponents(BuddyManager buddyManager, DataContainer dataContainer, CommandsFactory commandsFactory, CacheSPI cacheSPI, BuddyFqnTransformer transformer)
           
 void Interceptor.setCache(CacheSPI cache)
          Deprecated.  
 

Uses of CacheSPI in org.jboss.cache.invocation
 

Classes in org.jboss.cache.invocation that implement CacheSPI
 class CacheInvocationDelegate<K,V>
          The delegate that users (and ChainedInterceptor authors) interact with when they create a cache by using a cache factory.
 

Methods in org.jboss.cache.invocation that return CacheSPI
 CacheSPI<K,V> NodeInvocationDelegate.getCache()
           
 

Methods in org.jboss.cache.invocation with parameters of type CacheSPI
 void NodeInvocationDelegate.injectDependencies(CacheSPI spi)
           
 

Uses of CacheSPI in org.jboss.cache.loader
 

Fields in org.jboss.cache.loader declared as CacheSPI
protected  CacheSPI AbstractCacheLoader.cache
           
 

Methods in org.jboss.cache.loader with parameters of type CacheSPI
 void CacheLoaderManager.injectDependencies(CacheSPI cache, Configuration configuration, RegionManager regionManager, ComponentRegistry registry)
           
 void CacheLoader.setCache(CacheSPI c)
          Sets the CacheSPI that is maintaining this CacheLoader.
 void AbstractDelegatingCacheLoader.setCache(CacheSPI c)
           
 void AbstractCacheLoader.setCache(CacheSPI c)
           
protected  void CacheLoaderManager.setCacheInLoader(CacheSPI c, CacheLoader loader)
          Sets the cache instance associated with the given cache loader.
 void CacheLoaderManager.setConfig(CacheLoaderConfig config, CacheSPI cache, Configuration configuration)
          Sets a configuration object and creates a cacheloader accordingly.
protected  void LocalDelegatingCacheLoader.setDelegateCache(CacheSPI delegate)
           
 

Uses of CacheSPI in org.jboss.cache.loader.bdbje
 

Methods in org.jboss.cache.loader.bdbje with parameters of type CacheSPI
 void BdbjeCacheLoader.setCache(CacheSPI c)
          Sets the CacheImpl owner of this cache loader.
 

Uses of CacheSPI in org.jboss.cache.loader.jdbm
 

Methods in org.jboss.cache.loader.jdbm with parameters of type CacheSPI
 void JdbmCacheLoader.setCache(CacheSPI c)
          Sets the CacheImpl owner of this cache loader.
 

Uses of CacheSPI in org.jboss.cache.loader.tcp
 

Methods in org.jboss.cache.loader.tcp with parameters of type CacheSPI
 void TcpCacheServer.setCache(CacheSPI cache)
           
 

Uses of CacheSPI in org.jboss.cache.optimistic
 

Methods in org.jboss.cache.optimistic that return CacheSPI
protected  CacheSPI<K,V> WorkspaceNodeImpl.getCache()
           
 

Methods in org.jboss.cache.optimistic with parameters of type CacheSPI
 NodeSPI<K,V> WorkspaceNodeImpl.createChild(Object child_name, NodeSPI<K,V> parent, CacheSPI<K,V> cache, DataVersion version)
           
 NodeSPI WorkspaceNode.createChild(Object child_name, NodeSPI<K,V> parent, CacheSPI<K,V> cache, DataVersion version)
          Creates a child node.
 

Uses of CacheSPI in org.jboss.cache.statetransfer
 

Methods in org.jboss.cache.statetransfer with parameters of type CacheSPI
static StateTransferGenerator StateTransferFactory.getStateTransferGenerator(CacheSPI cache)
          Gets the StateTransferGenerator able to handle the given cache instance.
static StateTransferIntegrator StateTransferFactory.getStateTransferIntegrator(ObjectInputStream in, Fqn fqn, CacheSPI cache)
           
 void StateTransferManager.injectDependencies(CacheSPI cache, Marshaller marshaller, RegionManager regionManager, Configuration configuration, LockManager lockManager)
           
 

Constructors in org.jboss.cache.statetransfer with parameters of type CacheSPI
DefaultStateTransferGenerator(CacheSPI cache)
           
DefaultStateTransferIntegrator(Fqn targetFqn, CacheSPI cache)
           
StateTransferManager(CacheSPI cache)
           
 

Uses of CacheSPI in org.jboss.cache.util
 

Methods in org.jboss.cache.util with parameters of type CacheSPI
static String CachePrinter.printCacheInterceptors(CacheSPI<?,?> cache)
           
 



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