Uses of Class
org.jboss.cache.eviction.NodeEntry

Packages that use NodeEntry
org.jboss.cache.eviction   
 

Uses of NodeEntry in org.jboss.cache.eviction
 

Methods in org.jboss.cache.eviction that return NodeEntry
 NodeEntry LRUQueue.getFirstNodeEntry()
           
 NodeEntry LRUQueue.getFirstLRUNodeEntry()
           
 NodeEntry LRUQueue.getFirstMaxAgeNodeEntry()
           
 NodeEntry LRUQueue.getNodeEntry(Fqn fqn)
           
 NodeEntry LRUQueue.getNodeEntry(java.lang.String fqn)
           
 NodeEntry FIFOQueue.getFirstNodeEntry()
           
 NodeEntry FIFOQueue.getNodeEntry(Fqn fqn)
           
 NodeEntry FIFOQueue.getNodeEntry(java.lang.String fqn)
           
 NodeEntry EvictionQueue.getFirstNodeEntry()
          Get the first entry in the queue.
 NodeEntry EvictionQueue.getNodeEntry(Fqn fqn)
          Retrieve a node entry by Fqn.
 NodeEntry EvictionQueue.getNodeEntry(java.lang.String fqn)
           
 NodeEntry MRUQueue.getFirstNodeEntry()
          Will return the first entry in the nodeMap.
 NodeEntry MRUQueue.getNodeEntry(Fqn fqn)
           
 NodeEntry MRUQueue.getNodeEntry(java.lang.String fqn)
           
 NodeEntry LFUQueue.getFirstNodeEntry()
          Return the first node to evict.
 NodeEntry LFUQueue.getNodeEntry(Fqn fqn)
           
 NodeEntry LFUQueue.getNodeEntry(java.lang.String fqn)
           
 

Methods in org.jboss.cache.eviction with parameters of type NodeEntry
protected  boolean FIFOAlgorithm.shouldEvictNode(NodeEntry ne)
          For FIFO, a node should be evicted if the queue size is >= to the configured maxNodes size.
protected  boolean LFUAlgorithm.shouldEvictNode(NodeEntry ne)
           
 boolean LRUQueue.containsNodeEntry(NodeEntry entry)
           
 void LRUQueue.removeNodeEntry(NodeEntry entry)
           
 void LRUQueue.addNodeEntry(NodeEntry entry)
           
protected  boolean LRUAlgorithm.shouldEvictNode(NodeEntry entry)
           
protected  boolean MRUAlgorithm.shouldEvictNode(NodeEntry ne)
           
 boolean FIFOQueue.containsNodeEntry(NodeEntry entry)
           
 void FIFOQueue.removeNodeEntry(NodeEntry entry)
           
 void FIFOQueue.addNodeEntry(NodeEntry entry)
           
 boolean EvictionQueue.containsNodeEntry(NodeEntry entry)
          Check if queue contains the given NodeEntry.
 void EvictionQueue.removeNodeEntry(NodeEntry entry)
          Remove a NodeEntry from queue.
 void EvictionQueue.addNodeEntry(NodeEntry entry)
          Add a NodeEntry to the queue.
 boolean MRUQueue.containsNodeEntry(NodeEntry entry)
           
 void MRUQueue.removeNodeEntry(NodeEntry entry)
           
 void MRUQueue.addNodeEntry(NodeEntry entry)
           
 boolean LFUQueue.containsNodeEntry(NodeEntry entry)
           
 void LFUQueue.removeNodeEntry(NodeEntry entry)
           
 void LFUQueue.addNodeEntry(NodeEntry entry)
           
protected abstract  boolean BaseEvictionAlgorithm.shouldEvictNode(NodeEntry ne)
          This method will check whether the given node should be evicted or not.
protected  void BaseEvictionAlgorithm.evict(NodeEntry ne)
           
 



Copyright ? 1998-2005 JBoss Inc . All Rights Reserved.