public class ThreadsProcessor
extends org.apache.camel.support.AsyncProcessorSupport
implements org.apache.camel.spi.IdAware, org.apache.camel.spi.RouteIdAware
Exchanges using the asynchronous
 routing engine.
 
 Notice: For transacted routes then this ThreadsProcessor is not in use, as we want to process messages
 using the same thread to support all work done in the same transaction. The reason is that the transaction manager
 that orchestrate the transaction, requires all the work to be done on the same thread.
 
 Pay attention to how this processor handles rejected tasks.
 RejectedExecutionException exception, and marked to stop
 continue routing. The UnitOfWork will be regarded as failed, due the
 exception.UnitOfWork will be regarded as successful, due no exception being set.UnitOfWork will be regarded as successful, due no exception being set. And the
 current exchange will be added to the task queue.| Constructor and Description | 
|---|
| ThreadsProcessor(org.apache.camel.CamelContext camelContext,
                ExecutorService executorService,
                boolean shutdownExecutorService,
                org.apache.camel.util.concurrent.ThreadPoolRejectedPolicy rejectedPolicy) | 
| Modifier and Type | Method and Description | 
|---|---|
| protected void | doShutdown() | 
| protected void | doStart() | 
| protected void | doStop() | 
| ExecutorService | getExecutorService() | 
| String | getId() | 
| org.apache.camel.util.concurrent.ThreadPoolRejectedPolicy | getRejectedPolicy() | 
| String | getRouteId() | 
| boolean | process(org.apache.camel.Exchange exchange,
       org.apache.camel.AsyncCallback callback) | 
| void | setId(String id) | 
| void | setRouteId(String routeId) | 
| String | toString() | 
build, doBuild, doFail, doInit, doLifecycleChange, doResume, doSuspend, fail, getStatus, init, isBuild, isInit, isNew, isRunAllowed, isShutdown, isStarted, isStarting, isStartingOrStarted, isStopped, isStopping, isStoppingOrStopped, isSuspended, isSuspending, isSuspendingOrSuspended, resume, shutdown, start, stop, suspendclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitpublic ThreadsProcessor(org.apache.camel.CamelContext camelContext,
                        ExecutorService executorService,
                        boolean shutdownExecutorService,
                        org.apache.camel.util.concurrent.ThreadPoolRejectedPolicy rejectedPolicy)
public boolean process(org.apache.camel.Exchange exchange,
                       org.apache.camel.AsyncCallback callback)
process in interface org.apache.camel.AsyncProcessorpublic ExecutorService getExecutorService()
public String getId()
getId in interface org.apache.camel.spi.HasIdpublic void setId(String id)
setId in interface org.apache.camel.spi.IdAwarepublic String getRouteId()
getRouteId in interface org.apache.camel.spi.RouteIdAwarepublic void setRouteId(String routeId)
setRouteId in interface org.apache.camel.spi.RouteIdAwarepublic org.apache.camel.util.concurrent.ThreadPoolRejectedPolicy getRejectedPolicy()
protected void doStart()
                throws Exception
doStart in class org.apache.camel.support.AsyncProcessorSupportExceptionprotected void doStop()
               throws Exception
doStop in class org.apache.camel.support.AsyncProcessorSupportExceptionApache Camel