Package org.apache.camel
Interface AsyncProcessor
- All Superinterfaces:
Processor
- All Known Subinterfaces:
AsyncProducer
,Channel
,InternalProcessor
,ManagementInterceptStrategy.InstrumentationProcessor<T>
An asynchronous processor which can process an
method.
Exchange
in an asynchronous fashion and signal
completion by invoking the AsyncCallback
.
Any processor can be coerced to have an AsyncProcessor
interface by using the
invalid reference
AsyncProcessorConverterHelper.convert
-
Method Summary
Modifier and TypeMethodDescriptionboolean
process
(Exchange exchange, AsyncCallback callback) Processes the message exchange.processAsync
(Exchange exchange)
-
Method Details
-
process
Processes the message exchange. Similar toProcessor.process(org.apache.camel.Exchange)
, but the caller supports having the exchange asynchronously processed. If there was a failure processing then the causedException
would be set on theExchange
.- Parameters:
exchange
- the message exchangecallback
- theAsyncCallback
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.- Returns:
- (doneSync) true to continue execute synchronously, false to continue being executed asynchronously
-
processAsync
-