public class DirectVmBlockingProducer extends DefaultAsyncProducer
DirectEndpoint#isBlock) then the DirectEndpoint will create an instance
of this class instead of DirectProducer.
This producers process method will block for the configured duration (DirectEndpoint#getTimeout,
default to 30 seconds). After which if a consumer is still unavailable a DirectConsumerNotAvailableException
will be thrown.
Implementation note: Concurrent Producers will block for the duration it takes to determine if a
consumer is available, but actual consumer execution will happen concurrently.logshutdown, shuttingdown, started, starting, stopped, stopping, suspended, suspending| Constructor and Description |
|---|
DirectVmBlockingProducer(DirectVmEndpoint endpoint) |
| Modifier and Type | Method and Description |
|---|---|
protected DirectVmConsumer |
getConsumer(Exchange exchange) |
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, isStoppingOrStopped, isSuspended, isSuspending, isSuspendingOrSuspended, resume, shutdown, start, stop, suspendpublic DirectVmBlockingProducer(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.protected DirectVmConsumer getConsumer(Exchange exchange) throws Exception
ExceptionApache Camel