|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of TreeCache in org.jboss.cache |
Methods in org.jboss.cache that return TreeCache | |
TreeCache |
TreeCacheMBean.getInstance()
|
TreeCache |
TreeCache.getInstance()
|
Methods in org.jboss.cache with parameters of type TreeCache | |
void |
TreeNode.setRecursiveTreeCacheInstance(TreeCache cache)
Deprecated. Will be removed in JBossCache 1.3. |
void |
TreeCacheListener.cacheStarted(TreeCache cache)
Called when the cache is started. |
void |
TreeCacheListener.cacheStopped(TreeCache cache)
Called when the cache is stopped. |
protected void |
Node.init(java.lang.Object child_name,
Fqn fqn,
Node parent,
TreeCache cache)
|
void |
Node.setRecursiveTreeCacheInstance(TreeCache cache)
Set the tree cache instance recursively down to the children as well. |
void |
DataNode.setRecursiveTreeCacheInstance(TreeCache cache)
|
void |
ConsoleListener.cacheStarted(TreeCache cache)
|
void |
ConsoleListener.cacheStopped(TreeCache cache)
|
void |
AbstractTreeCacheListener.cacheStarted(TreeCache cache)
|
void |
AbstractTreeCacheListener.cacheStopped(TreeCache cache)
|
Constructors in org.jboss.cache with parameters of type TreeCache | |
TreeCacheView2(TreeCache cache)
|
|
ReplicationQueue(TreeCache cache,
long interval,
long max_elements)
|
|
OptimisticTreeNode(java.lang.Object child_name,
Fqn fqn,
Node parent,
java.util.Map data,
TreeCache cache)
|
|
OptimisticTreeNode(java.lang.Object child_name,
Fqn fqn,
Node parent,
java.util.Map data,
boolean mapSafe,
TreeCache cache)
|
|
OptimisticTreeNode(java.lang.Object child_name,
Fqn fqn,
Node parent,
java.lang.Object key,
java.lang.Object value,
TreeCache cache)
|
|
Node(java.lang.Object child_name,
Fqn fqn,
Node parent,
java.util.Map data,
TreeCache cache)
|
|
Node(java.lang.Object child_name,
Fqn fqn,
Node parent,
java.util.Map data,
boolean mapSafe,
TreeCache cache)
|
|
Node(java.lang.Object child_name,
Fqn fqn,
Node parent,
java.lang.Object key,
java.lang.Object value,
TreeCache cache)
|
|
ConsoleListener(TreeCache cache)
Constructor. |
|
ConsoleListener(TreeCache cache,
boolean startCache,
boolean stopCache)
Constructor. |
Uses of TreeCache in org.jboss.cache.aop |
Subclasses of TreeCache in org.jboss.cache.aop | |
class |
MarshalledTreeCache
Version of TreeCache that added call to handle marshalling values. |
class |
TreeCacheAop
Implementation of the cache using dyanmic aop interceptors. |
Fields in org.jboss.cache.aop declared as TreeCache | |
protected TreeCache |
MarshalledTreeCache.localCopy_
|
Methods in org.jboss.cache.aop with parameters of type TreeCache | |
void |
MarshalledTreeCache.cacheStarted(TreeCache cache)
|
void |
MarshalledTreeCache.cacheStopped(TreeCache cache)
|
Uses of TreeCache in org.jboss.cache.eviction |
Fields in org.jboss.cache.eviction declared as TreeCache | |
protected TreeCache |
BaseEvictionPolicy.cache_
|
Methods in org.jboss.cache.eviction with parameters of type TreeCache | |
void |
LRUPolicy.cacheStarted(TreeCache cache)
|
void |
LRUPolicy.cacheStopped(TreeCache cache)
|
void |
LRUPolicy.configure(TreeCache cache)
|
void |
EvictionPolicy.configure(TreeCache cache)
Method called to configure this implementation. |
void |
BaseEvictionPolicy.configure(TreeCache cache)
|
Uses of TreeCache in org.jboss.cache.factories |
Methods in org.jboss.cache.factories with parameters of type TreeCache | |
DataNode |
NodeFactory.createDataNode(byte nodeType,
java.lang.Object childName,
Fqn fqn,
DataNode parent,
java.util.Map data,
TreeCache cache)
|
DataNode |
NodeFactory.createDataNode(byte nodeType,
java.lang.Object childName,
Fqn fqn,
DataNode parent,
java.util.Map data,
boolean mapSafe,
TreeCache cache)
Creates a new DataNode instance. |
TreeNode |
NodeFactory.createNodeOfType(TreeNode template,
java.lang.Object childName,
Fqn fqn,
TreeNode parent,
java.util.Map data,
TreeCache cache)
Creates a node of the same type of the node passed in as a template. |
Uses of TreeCache in org.jboss.cache.interceptors |
Methods in org.jboss.cache.interceptors with parameters of type TreeCache | |
void |
UnlockInterceptor.setCache(TreeCache cache)
|
void |
ReplicationInterceptor.setCache(TreeCache cache)
|
void |
PessimisticLockInterceptor.setCache(TreeCache cache)
|
void |
PassivationInterceptor.setCache(TreeCache cache)
|
void |
OptimisticValidatorInterceptor.setCache(TreeCache cache)
Set |
void |
OptimisticTxInterceptor.setCache(TreeCache cache)
|
void |
OptimisticReplicationInterceptor.setCache(TreeCache cache)
|
void |
OptimisticNodeInterceptor.setCache(TreeCache cache)
|
void |
OptimisticLockingInterceptor.setCache(TreeCache cache)
|
void |
OptimisticInterceptor.setCache(TreeCache cache)
|
void |
OptimisticCreateIfNotExistsInterceptor.setCache(TreeCache cache)
|
void |
Interceptor.setCache(TreeCache cache)
|
void |
CreateIfNotExistsInterceptor.setCache(TreeCache cache)
|
void |
CallInterceptor.setCache(TreeCache cache)
|
void |
CacheStoreInterceptor.setCache(TreeCache cache)
|
void |
CacheLoaderInterceptor.setCache(TreeCache cache)
|
Uses of TreeCache in org.jboss.cache.loader |
Methods in org.jboss.cache.loader with parameters of type TreeCache | |
void |
SharedStoreCacheLoader.cacheStarted(TreeCache cache)
|
void |
SharedStoreCacheLoader.cacheStopped(TreeCache cache)
|
void |
SharedStoreCacheLoader.setCache(TreeCache c)
|
void |
RpcDelegatingCacheLoader.setCache(TreeCache cache)
Allows configuration via XML config file. |
void |
RmiDelegatingCacheLoader.setCache(TreeCache cache)
Allows configuration via XML config file. |
void |
LocalDelegatingCacheLoader.setCache(TreeCache cache)
|
void |
JDBCCacheLoader.setCache(TreeCache c)
|
void |
FileCacheLoader.setCache(TreeCache c)
|
abstract void |
DelegatingCacheLoader.setCache(TreeCache c)
|
void |
CacheLoader.setCache(TreeCache c)
This method allows the CacheLoader to set the TreeCache, therefore allowing the CacheLoader to invoke methods of the TreeCache. |
void |
AsyncCacheLoader.setCache(TreeCache c)
|
Constructors in org.jboss.cache.loader with parameters of type TreeCache | |
RpcDelegatingCacheLoader(TreeCache cache,
int timeout)
Allows programmatic configuration. |
|
RmiDelegatingCacheLoader(TreeCache cache,
java.lang.String host,
int port,
java.lang.String bindName)
Allows programmatic configuration. |
|
LocalDelegatingCacheLoader(TreeCache delegate)
|
Uses of TreeCache in org.jboss.cache.loader.bdbje |
Methods in org.jboss.cache.loader.bdbje with parameters of type TreeCache | |
void |
BdbjeCacheLoader.setCache(TreeCache c)
Sets the TreeCache owner of this cache loader. |
Uses of TreeCache in org.jboss.cache.loader.rmi |
Constructors in org.jboss.cache.loader.rmi with parameters of type TreeCache | |
RemoteTreeCacheImpl(TreeCache cache)
|
Uses of TreeCache in org.jboss.cache.loader.tcp |
Methods in org.jboss.cache.loader.tcp with parameters of type TreeCache | |
void |
TcpDelegatingCacheLoader.setCache(TreeCache cache)
Allows configuration via XML config file. |
Uses of TreeCache in org.jboss.cache.lock |
Constructors in org.jboss.cache.lock with parameters of type TreeCache | |
IdentityLock(TreeCache cache,
Fqn fqn)
|
Uses of TreeCache in org.jboss.cache.optimistic |
Methods in org.jboss.cache.optimistic that return TreeCache | |
TreeCache |
TransactionWorkspaceImpl.getCache()
|
Methods in org.jboss.cache.optimistic with parameters of type TreeCache | |
void |
WorkspaceNodeImpl.setRecursiveTreeCacheInstance(TreeCache cache)
Deprecated. Will be removed in JBossCache 1.3. |
void |
TransactionWorkspaceImpl.setCache(TreeCache cache)
|
Uses of TreeCache in org.jboss.cache.rpc |
Subclasses of TreeCache in org.jboss.cache.rpc | |
class |
RpcTreeCache
Deprecated. This class will be removed when JGroups adds a multiplexing capability. |
Uses of TreeCache in org.jboss.cache.statetransfer |
Methods in org.jboss.cache.statetransfer with parameters of type TreeCache | |
static StateTransferGenerator |
StateTransferFactory.getStateTransferGenerator(TreeCache cache)
Gets the StateTransferGenerator able to handle the given cache instance. |
static StateTransferIntegrator |
StateTransferFactory.getStateTransferIntegrator(byte[] state,
Fqn targetFqn,
TreeCache cache)
Gets a StateTransferIntegrator able to handle the given state. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |