Uses of Interface
org.jboss.cache.CacheSPI

Packages that use CacheSPI
org.jboss.cache   
org.jboss.cache.buddyreplication   
org.jboss.cache.commands   
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.jmx   
org.jboss.cache.loader   
org.jboss.cache.loader.bdbje   
org.jboss.cache.loader.jdbm   
org.jboss.cache.loader.tcp   
org.jboss.cache.lock   
org.jboss.cache.mvcc   
org.jboss.cache.optimistic   
org.jboss.cache.statetransfer   
org.jboss.cache.util   
 

Uses of CacheSPI in org.jboss.cache
 

Fields in org.jboss.cache declared as CacheSPI
protected  CacheSPI<K,V> AbstractNodeFactory.cache
           
protected  CacheSPI<K,V> UnversionedNode.cache
           
 

Methods in org.jboss.cache that return CacheSPI
protected  CacheSPI<K,V> DefaultCacheFactory.createAndWire(Configuration configuration)
           
 CacheSPI RegionManagerImpl.getCache()
           
 CacheSPI<K,V> UnversionedNode.getCache()
           
 CacheSPI RegionManager.getCache()
           
 CacheSPI<K,V> InternalNode.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 PessimisticUnversionedNode.injectDependencies(CacheSPI<K,V> spi, CommandsFactory commandsFactory, NodeFactory<K,V> nodeFactory)
          Deprecated.  
 void AbstractNodeFactory.injectDependencies(CacheSPI<K,V> cache, Configuration configuration, InvocationContextContainer invocationContextContainer, InterceptorChain interceptorChain, CommandsFactory commandsFactory)
           
 void RegionManagerImpl.injectDependencies(CacheSPI cache, Configuration configuration, RPCManager rpcManager, LockManager lockManager, BuddyFqnTransformer transformer, RegionRegistry regionsRegistry)
           
 void RPCManagerImpl.setupDependencies(ChannelMessageListener messageListener, Configuration configuration, Notifier notifier, CacheSPI spi, Marshaller marshaller, TransactionTable txTable, TransactionManager txManager, InvocationContextContainer container, InterceptorChain interceptorChain, ComponentRegistry componentRegistry, LockManager lockManager)
           
 

Constructors in org.jboss.cache with parameters of type CacheSPI
ConsoleListener(CacheSPI cache)
          Constructor.
ConsoleListener(CacheSPI cache, boolean startCache, boolean stopCache)
          Constructor.
PessimisticUnversionedNode(Object name, Fqn fqn, Map<K,V> data, CacheSPI<K,V> cache)
          Deprecated.  
UnversionedNode(Fqn fqn, CacheSPI<K,V> cache, boolean lockForChildInsertRemove)
           
UnversionedNode(Fqn fqn, CacheSPI<K,V> cache, boolean lockForChildInsertRemove, Map<K,V> data)
           
VersionedNode(Fqn fqn, NodeSPI<K,V> parent, Map<K,V> data, CacheSPI<K,V> cache)
          Deprecated.  
 

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
 

Fields in org.jboss.cache.commands declared as CacheSPI
protected  CacheSPI CommandsFactoryImpl.cacheSpi
           
 

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

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)
           
 

Uses of CacheSPI in org.jboss.cache.eviction
 

Fields in org.jboss.cache.eviction declared as CacheSPI
protected  CacheSPI<?,?> BaseEvictionAlgorithm.cache
           
protected  CacheSPI BaseEvictionPolicy.cache_
          Deprecated.  
 

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

Methods in org.jboss.cache.eviction with parameters of type CacheSPI
 void NullEvictionAlgorithm.assignToRegion(Fqn fqn, CacheSPI<?,?> cache, EvictionAlgorithmConfig evictionAlgorithmConfig, Configuration configuration)
           
 void BaseEvictionAlgorithm.assignToRegion(Fqn fqn, CacheSPI<?,?> cache, EvictionAlgorithmConfig evictionAlgorithmConfig, Configuration configuration)
           
 void EvictionAlgorithm.assignToRegion(Fqn fqn, CacheSPI<?,?> cache, EvictionAlgorithmConfig evictionAlgorithmConfig, Configuration configuration)
          Assigns the algorithm instance to a specific region.
 void LRUPolicy.setCache(CacheSPI cache)
          Deprecated.  
 void BaseEvictionPolicy.setCache(CacheSPI cache)
          Deprecated.  
 void NullEvictionPolicy.setCache(CacheSPI cache)
          Deprecated.  
 void EvictionPolicy.setCache(CacheSPI cache)
          Deprecated. Method called to set the cache in this implementation.
 

Uses of CacheSPI in org.jboss.cache.factories
 

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 LegacyDataGravitatorInterceptor.injectComponents(BuddyManager buddyManager, DataContainer dataContainer, CommandsFactory commandsFactory, CacheSPI cacheSPI, BuddyFqnTransformer transformer)
          Deprecated.  
 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<K,V> spi)
           
 

Uses of CacheSPI in org.jboss.cache.jmx
 

Methods in org.jboss.cache.jmx with parameters of type CacheSPI
 void PlatformMBeanServerRegistration.initialize(CacheSPI cache)
           
 

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 AbstractDelegatingCacheLoader.setCache(CacheSPI c)
           
 void AbstractCacheLoader.setCache(CacheSPI c)
           
 void CacheLoader.setCache(CacheSPI c)
          Sets the CacheSPI that is maintaining this CacheLoader.
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.lock
 

Methods in org.jboss.cache.lock with parameters of type CacheSPI
 void MVCCLockManager.injectDependencies(DataContainer dataContainer, CacheSPI cache, TransactionManager transactionManager, InvocationContextContainer invocationContextContainer)
           
 

Uses of CacheSPI in org.jboss.cache.mvcc
 

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

Uses of CacheSPI in org.jboss.cache.optimistic
 

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

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

Uses of CacheSPI in org.jboss.cache.statetransfer
 

Fields in org.jboss.cache.statetransfer declared as CacheSPI
protected  CacheSPI DefaultStateTransferManager.cache
           
 

Methods in org.jboss.cache.statetransfer with parameters of type CacheSPI
 void LegacyStateTransferGenerator.inject(CacheSPI cache)
          Deprecated.  
 void DefaultStateTransferIntegrator.inject(CacheSPI<?,?> cache, Configuration cfg, RPCManager rpcManager, TransactionLog txLog, InvocationContextContainer container, InterceptorChain chain, ComponentRegistry registry)
           
 void LegacyStateTransferIntegrator.inject(CacheSPI<?,?> cache, NodeFactory nodefactory, Configuration cfg)
          Deprecated.  
 void DefaultStateTransferGenerator.inject(CacheSPI cache, RPCManager rpcManager, Configuration configuration, TransactionLog txLog)
           
 void DefaultStateTransferManager.injectDependencies(CacheSPI cache, Marshaller marshaller, RegionManager regionManager, Configuration configuration, CacheLoaderManager cacheLoaderManager, StateTransferIntegrator integrator, StateTransferGenerator generator)
           
 

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 © 2009 JBoss, a division of Red Hat. All Rights Reserved.