Uses of Class
org.apache.camel.ThreadPoolRejectedPolicy

Packages that use ThreadPoolRejectedPolicy
org.apache.camel The core Camel API. 
org.apache.camel.builder The Camel Domain Specific Language for creating Routes, Predicates, Expressions and Error Handlers
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 internally by the Camel runtime which are plugin strategies. 
 

Uses of ThreadPoolRejectedPolicy in org.apache.camel
 

Methods in org.apache.camel that return ThreadPoolRejectedPolicy
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.
 

Uses of ThreadPoolRejectedPolicy in org.apache.camel.builder
 

Methods in org.apache.camel.builder with parameters of type ThreadPoolRejectedPolicy
 ThreadPoolBuilder ThreadPoolBuilder.rejectedPolicy(ThreadPoolRejectedPolicy rejectedPolicy)
           
 ThreadPoolProfileBuilder ThreadPoolProfileBuilder.rejectedPolicy(ThreadPoolRejectedPolicy rejectedPolicy)
           
 

Uses of ThreadPoolRejectedPolicy in org.apache.camel.model
 

Methods in org.apache.camel.model that return ThreadPoolRejectedPolicy
 ThreadPoolRejectedPolicy ThreadPoolProfileDefinition.getRejectedPolicy()
           
 ThreadPoolRejectedPolicy ThreadsDefinition.getRejectedPolicy()
           
protected  ThreadPoolRejectedPolicy ThreadsDefinition.resolveRejectedPolicy(RouteContext routeContext)
           
 

Methods in org.apache.camel.model with parameters of type ThreadPoolRejectedPolicy
 ThreadPoolProfileDefinition ThreadPoolProfileDefinition.rejectedPolicy(ThreadPoolRejectedPolicy rejectedPolicy)
           
 ThreadsDefinition ThreadsDefinition.rejectedPolicy(ThreadPoolRejectedPolicy rejectedPolicy)
          Sets the handler for tasks which cannot be executed by the thread pool.
 void ThreadPoolProfileDefinition.setRejectedPolicy(ThreadPoolRejectedPolicy rejectedPolicy)
           
 void ThreadsDefinition.setRejectedPolicy(ThreadPoolRejectedPolicy rejectedPolicy)
           
 

Uses of ThreadPoolRejectedPolicy in org.apache.camel.processor
 

Methods in org.apache.camel.processor that return ThreadPoolRejectedPolicy
 ThreadPoolRejectedPolicy ThreadsProcessor.getRejectedPolicy()
           
 

Methods in org.apache.camel.processor with parameters of type ThreadPoolRejectedPolicy
 void ThreadsProcessor.setRejectedPolicy(ThreadPoolRejectedPolicy rejectedPolicy)
           
 

Uses of ThreadPoolRejectedPolicy in org.apache.camel.spi
 

Methods in org.apache.camel.spi that return ThreadPoolRejectedPolicy
 ThreadPoolRejectedPolicy ThreadPoolProfile.getRejectedPolicy()
          Gets the policy for tasks which cannot be executed by the thread pool.
 

Methods in org.apache.camel.spi with parameters of type ThreadPoolRejectedPolicy
 void ThreadPoolProfile.setRejectedPolicy(ThreadPoolRejectedPolicy rejectedPolicy)
          Sets the handler for tasks which cannot be executed by the thread pool.
 



Apache Camel