Uses of Class
org.apache.camel.util.LRUCache

Packages that use LRUCache
org.apache.camel.impl Default implementation classes for Camel Core 
org.apache.camel.util Utility classes used by the core of Camel. 
 

Uses of LRUCache in org.apache.camel.impl
 

Subclasses of LRUCache in org.apache.camel.impl
 class EndpointRegistry
          Endpoint registry which is a based on a LRUSoftCache.
 

Methods in org.apache.camel.impl that return LRUCache
protected static LRUCache<String,Producer> ProducerCache.createLRUCache(int cacheSize)
          Creates the LRUCache to be used.
protected static LRUCache<String,PollingConsumer> ConsumerCache.createLRUCache(int cacheSize)
          Creates the LRUCache to be used.
 

Uses of LRUCache in org.apache.camel.util
 

Subclasses of LRUCache in org.apache.camel.util
 class LRUSoftCache<K,V>
          A Least Recently Used Cache which uses SoftReference.
 class LRUWeakCache<K,V>
          A Least Recently Used Cache which uses WeakReference.
 



Apache Camel