public class DirectVmProducer extends DefaultAsyncProducer
logshutdown, shuttingdown, started, starting, stopped, stopping, suspended, suspending| Constructor and Description |
|---|
DirectVmProducer(DirectVmEndpoint endpoint) |
| Modifier and Type | Method and Description |
|---|---|
void |
process(Exchange exchange)
Processes the message exchange
|
boolean |
process(Exchange exchange,
AsyncCallback callback)
Processes the message exchange.
|
createExchange, createExchange, createExchange, doStart, doStop, getEndpoint, isSingleton, toStringdoResume, doShutdown, doSuspend, getStatus, getVersion, isRunAllowed, isStarted, isStarting, isStopped, isStopping, isSuspended, isSuspending, resume, shutdown, start, stop, suspendpublic DirectVmProducer(DirectVmEndpoint endpoint)
public void process(Exchange exchange) throws Exception
Processorprocess in interface Processorprocess in class DefaultAsyncProducerexchange - the message exchangeException - if an internal processing error has occurred.public boolean process(Exchange exchange, AsyncCallback callback)
AsyncProcessorProcessor.process(org.apache.camel.Exchange), but the caller supports having the exchange asynchronously processed.
If there was a failure processing then the caused Exception would be set on the Exchange.exchange - the message exchangecallback - the AsyncCallback will be invoked when the processing of the exchange is completed.
If the exchange is completed synchronously, then the callback is also invoked synchronously.
The callback should therefore be careful of starting recursive loop.AsyncProcessorHelper.process(AsyncProcessor, Exchange, AsyncCallback)Apache CAMEL