Uses of Class
org.apache.camel.spi.ThreadPoolProfile

Packages that use ThreadPoolProfile
org.apache.camel.builder The Camel Domain Specific Language for creating Routes, Predicates, Expressions and Error Handlers
org.apache.camel.impl Default implementation classes for Camel Core 
org.apache.camel.spi Service Provider Interfaces used internally by the Camel runtime which are plugin strategies. 
 

Uses of ThreadPoolProfile in org.apache.camel.builder
 

Methods in org.apache.camel.builder that return ThreadPoolProfile
 ThreadPoolProfile ThreadPoolProfileBuilder.build()
          Builds the new thread pool
 

Constructors in org.apache.camel.builder with parameters of type ThreadPoolProfile
ThreadPoolProfileBuilder(String id, ThreadPoolProfile origProfile)
           
 

Uses of ThreadPoolProfile in org.apache.camel.impl
 

Subclasses of ThreadPoolProfile in org.apache.camel.impl
 class ThreadPoolProfileSupport
          Deprecated. use ThreadPoolProfile instead, will be removed in a future Camel release
 

Methods in org.apache.camel.impl that return ThreadPoolProfile
 ThreadPoolProfile DefaultExecutorServiceManager.getDefaultThreadPoolProfile()
           
 ThreadPoolProfile DefaultExecutorServiceStrategy.getDefaultThreadPoolProfile()
          Deprecated.  
 ThreadPoolProfile DefaultExecutorServiceManager.getThreadPoolProfile(String id)
           
 ThreadPoolProfile DefaultExecutorServiceStrategy.getThreadPoolProfile(String id)
          Deprecated.  
 

Methods in org.apache.camel.impl with parameters of type ThreadPoolProfile
 ScheduledExecutorService DefaultExecutorServiceManager.newScheduledThreadPool(Object source, String name, ThreadPoolProfile profile)
           
 ScheduledExecutorService DefaultThreadPoolFactory.newScheduledThreadPool(ThreadPoolProfile profile, ThreadFactory threadFactory)
           
 ExecutorService DefaultExecutorServiceManager.newThreadPool(Object source, String name, ThreadPoolProfile profile)
           
 ExecutorService DefaultThreadPoolFactory.newThreadPool(ThreadPoolProfile profile, ThreadFactory factory)
           
 void DefaultExecutorServiceManager.registerThreadPoolProfile(ThreadPoolProfile profile)
           
 void DefaultExecutorServiceStrategy.registerThreadPoolProfile(ThreadPoolProfile profile)
          Deprecated.  
 void DefaultExecutorServiceManager.setDefaultThreadPoolProfile(ThreadPoolProfile defaultThreadPoolProfile)
           
 void DefaultExecutorServiceStrategy.setDefaultThreadPoolProfile(ThreadPoolProfile defaultThreadPoolProfile)
          Deprecated.  
 

Uses of ThreadPoolProfile in org.apache.camel.spi
 

Methods in org.apache.camel.spi that return ThreadPoolProfile
 ThreadPoolProfile ThreadPoolProfile.clone()
           
 ThreadPoolProfile ExecutorServiceManager.getDefaultThreadPoolProfile()
          Gets the default thread pool profile
 ThreadPoolProfile ExecutorServiceStrategy.getDefaultThreadPoolProfile()
          Deprecated. Gets the default thread pool profile
 ThreadPoolProfile ExecutorServiceManager.getThreadPoolProfile(String id)
          Gets the thread pool profile by the given id
 ThreadPoolProfile ExecutorServiceStrategy.getThreadPoolProfile(String id)
          Deprecated. Gets the thread pool profile by the given id
 

Methods in org.apache.camel.spi with parameters of type ThreadPoolProfile
 void ThreadPoolProfile.addDefaults(ThreadPoolProfile defaultProfile)
          Overwrites each attribute that is null with the attribute from defaultProfile
 ScheduledExecutorService ExecutorServiceManager.newScheduledThreadPool(Object source, String name, ThreadPoolProfile profile)
          Creates a new scheduled thread pool using a profile
 ScheduledExecutorService ThreadPoolFactory.newScheduledThreadPool(ThreadPoolProfile profile, ThreadFactory threadFactory)
          Create a scheduled thread pool using the given thread pool profile
 ExecutorService ExecutorServiceManager.newThreadPool(Object source, String name, ThreadPoolProfile profile)
          Creates a new thread pool using the given profile
 ExecutorService ThreadPoolFactory.newThreadPool(ThreadPoolProfile profile, ThreadFactory threadFactory)
          Create a thread pool using the given thread pool profile
 void ExecutorServiceManager.registerThreadPoolProfile(ThreadPoolProfile profile)
          Registers the given thread pool profile
 void ExecutorServiceStrategy.registerThreadPoolProfile(ThreadPoolProfile profile)
          Deprecated. Registers the given thread pool profile
 void ExecutorServiceManager.setDefaultThreadPoolProfile(ThreadPoolProfile defaultThreadPoolProfile)
          Sets the default thread pool profile
 void ExecutorServiceStrategy.setDefaultThreadPoolProfile(ThreadPoolProfile defaultThreadPoolProfile)
          Deprecated. Sets the default thread pool profile
 



Apache Camel