Package | Description |
---|---|
org.apache.camel |
The core Camel API.
|
org.apache.camel.builder | |
org.apache.camel.model |
The JAXB POJOs for the
XML Configuration
of the routing rules.
|
org.apache.camel.processor |
A collection of Processor
implementations which are used to implement the
Enterprise Integration Patterns
|
org.apache.camel.spi |
Service Provider Interfaces used by the Camel runtime which are plugin strategies.
|
Modifier and Type | Method and Description |
---|---|
static ThreadPoolRejectedPolicy |
ThreadPoolRejectedPolicy.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ThreadPoolRejectedPolicy[] |
ThreadPoolRejectedPolicy.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
ThreadPoolBuilder |
ThreadPoolBuilder.rejectedPolicy(ThreadPoolRejectedPolicy rejectedPolicy) |
ThreadPoolProfileBuilder |
ThreadPoolProfileBuilder.rejectedPolicy(ThreadPoolRejectedPolicy rejectedPolicy) |
Modifier and Type | Method and Description |
---|---|
ThreadPoolRejectedPolicy |
ThreadsDefinition.getRejectedPolicy() |
ThreadPoolRejectedPolicy |
ThreadPoolProfileDefinition.getRejectedPolicy() |
protected ThreadPoolRejectedPolicy |
ThreadsDefinition.resolveRejectedPolicy(RouteContext routeContext) |
Modifier and Type | Method and Description |
---|---|
ThreadsDefinition |
ThreadsDefinition.rejectedPolicy(ThreadPoolRejectedPolicy rejectedPolicy)
Sets the handler for tasks which cannot be executed by the thread pool.
|
ThreadPoolProfileDefinition |
ThreadPoolProfileDefinition.rejectedPolicy(ThreadPoolRejectedPolicy rejectedPolicy) |
void |
ThreadsDefinition.setRejectedPolicy(ThreadPoolRejectedPolicy rejectedPolicy) |
void |
ThreadPoolProfileDefinition.setRejectedPolicy(ThreadPoolRejectedPolicy rejectedPolicy)
Sets the handler for tasks which cannot be executed by the thread pool.
|
Modifier and Type | Method and Description |
---|---|
ThreadPoolRejectedPolicy |
ThreadsProcessor.getRejectedPolicy() |
Constructor and Description |
---|
ThreadsProcessor(CamelContext camelContext,
ExecutorService executorService,
boolean shutdownExecutorService,
ThreadPoolRejectedPolicy rejectedPolicy) |
Modifier and Type | Method and Description |
---|---|
ThreadPoolRejectedPolicy |
ThreadPoolProfile.getRejectedPolicy()
Gets the policy for tasks which cannot be executed by the thread pool.
|
Modifier and Type | Method and Description |
---|---|
void |
ThreadPoolProfile.setRejectedPolicy(ThreadPoolRejectedPolicy rejectedPolicy)
Sets the handler for tasks which cannot be executed by the thread pool.
|
Apache Camel