Uses of Class
org.jboss.util.LRUCachePolicy.LRUCacheEntry
-
Packages that use LRUCachePolicy.LRUCacheEntry Package Description org.jboss.util Utility classes and interfaces. -
-
Uses of LRUCachePolicy.LRUCacheEntry in org.jboss.util
Fields in org.jboss.util declared as LRUCachePolicy.LRUCacheEntry Modifier and Type Field Description LRUCachePolicy.LRUCacheEntry
LRUCachePolicy.LRUList. m_head
The head of the double linked listLRUCachePolicy.LRUCacheEntry
LRUCachePolicy.LRUCacheEntry. m_next
Reference to the next cell in the listLRUCachePolicy.LRUCacheEntry
LRUCachePolicy.LRUCacheEntry. m_prev
Reference to the previous cell in the listLRUCachePolicy.LRUCacheEntry
LRUCachePolicy.LRUList. m_tail
The tail of the double linked listMethods in org.jboss.util that return LRUCachePolicy.LRUCacheEntry Modifier and Type Method Description protected LRUCachePolicy.LRUCacheEntry
LRUCachePolicy. createCacheEntry(java.lang.Object key, java.lang.Object value)
Factory method for cache entriesMethods in org.jboss.util with parameters of type LRUCachePolicy.LRUCacheEntry Modifier and Type Method Description protected void
LRUCachePolicy. ageOut(LRUCachePolicy.LRUCacheEntry entry)
Callback method called when the cache algorithm ages out of the cache the given entry.protected void
LRUCachePolicy.LRUList. entryAdded(LRUCachePolicy.LRUCacheEntry entry)
Callback that signals that the given entry has been added to the cache.protected void
LRUCachePolicy.LRUList. entryPromotion(LRUCachePolicy.LRUCacheEntry entry)
Callback that signals that the given entry is just about to be added.protected void
LRUCachePolicy.LRUList. entryRemoved(LRUCachePolicy.LRUCacheEntry entry)
Callback that signals that the given entry has been removed from the cache.protected void
LRUCachePolicy.LRUList. promote(LRUCachePolicy.LRUCacheEntry entry)
Promotes the cache entryentry
to the last used position of the list.protected void
LRUCachePolicy.LRUList. remove(LRUCachePolicy.LRUCacheEntry entry)
Removes from the cache list the specified entry.
-