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.LRUCacheEntryLRUCachePolicy.LRUList. m_headThe head of the double linked listLRUCachePolicy.LRUCacheEntryLRUCachePolicy.LRUCacheEntry. m_nextReference to the next cell in the listLRUCachePolicy.LRUCacheEntryLRUCachePolicy.LRUCacheEntry. m_prevReference to the previous cell in the listLRUCachePolicy.LRUCacheEntryLRUCachePolicy.LRUList. m_tailThe tail of the double linked listMethods in org.jboss.util that return LRUCachePolicy.LRUCacheEntry Modifier and Type Method Description protected LRUCachePolicy.LRUCacheEntryLRUCachePolicy. 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 voidLRUCachePolicy. ageOut(LRUCachePolicy.LRUCacheEntry entry)Callback method called when the cache algorithm ages out of the cache the given entry.protected voidLRUCachePolicy.LRUList. entryAdded(LRUCachePolicy.LRUCacheEntry entry)Callback that signals that the given entry has been added to the cache.protected voidLRUCachePolicy.LRUList. entryPromotion(LRUCachePolicy.LRUCacheEntry entry)Callback that signals that the given entry is just about to be added.protected voidLRUCachePolicy.LRUList. entryRemoved(LRUCachePolicy.LRUCacheEntry entry)Callback that signals that the given entry has been removed from the cache.protected voidLRUCachePolicy.LRUList. promote(LRUCachePolicy.LRUCacheEntry entry)Promotes the cache entryentryto the last used position of the list.protected voidLRUCachePolicy.LRUList. remove(LRUCachePolicy.LRUCacheEntry entry)Removes from the cache list the specified entry.
-