Package | Description |
---|---|
org.apache.camel.impl |
Default implementation classes for Camel Core
|
org.apache.camel.language.simple |
Camel Simple language.
|
org.apache.camel.language.simple.ast |
AST for the Camel Simple language.
|
org.apache.camel.util |
Utility classes used by the core of Camel.
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultEndpointRegistry
Default implementation of
EndpointRegistry |
class |
DefaultTransformerRegistry
Default implementation of
TransformerRegistry . |
class |
DefaultValidatorRegistry
Default implementation of
ValidatorRegistry . |
Modifier and Type | Method and Description |
---|---|
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. |
Constructor and Description |
---|
SimpleExpressionParser(String expression,
boolean allowEscape,
LRUCache<String,Expression> cacheExpression) |
SimplePredicateParser(String expression,
boolean allowEscape,
LRUCache<String,Expression> cacheExpression) |
Constructor and Description |
---|
SimpleFunctionExpression(SimpleToken token,
LRUCache<String,Expression> cacheExpression) |
SimpleFunctionStart(SimpleToken token,
LRUCache<String,Expression> cacheExpression) |
Modifier and Type | Class and Description |
---|---|
class |
LRUSoftCache<K,V>
A cache that uses a near optional LRU Cache using
SoftReference . |
class |
LRUWeakCache<K,V>
A cache that uses a near optional LRU Cache using
WeakReference . |
Modifier and Type | Method and Description |
---|---|
static LRUCache |
LRUCacheFactory.newLRUCache(int maximumCacheSize)
Constructs an empty LRUCache instance with the
specified maximumCacheSize, and will stop on eviction.
|
static LRUCache |
LRUCacheFactory.newLRUCache(int initialCapacity,
int maximumCacheSize)
Constructs an empty LRUCache instance with the
specified initial capacity, maximumCacheSize, and will stop on eviction.
|
static LRUCache |
LRUCacheFactory.newLRUCache(int initialCapacity,
int maximumCacheSize,
boolean stopOnEviction)
Constructs an empty LRUCache instance with the
specified initial capacity, maximumCacheSize,load factor and ordering mode.
|
Apache Camel