Package org.apache.camel
Interface AsyncProcessor
-
- All Superinterfaces:
Processor
- All Known Subinterfaces:
AsyncProducer,Channel,InternalProcessor,ManagementInterceptStrategy.InstrumentationProcessor<T>
public interface AsyncProcessor extends Processor
An asynchronous processor which can process anExchangein an asynchronous fashion and signal completion by invoking theAsyncCallback. Any processor can be coerced to have anAsyncProcessorinterface by using theAsyncProcessorConverterHelper.convertmethod.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanprocess(Exchange exchange, AsyncCallback callback)Processes the message exchange.CompletableFuture<Exchange>processAsync(Exchange exchange)
-
-
-
Method Detail
-
process
boolean process(Exchange exchange, AsyncCallback callback)
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 causedExceptionwould be set on theExchange.- Parameters:
exchange- the message exchangecallback- theAsyncCallbackwill 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
CompletableFuture<Exchange> processAsync(Exchange exchange)
-
-