public abstract class SimpleLoadBalancerSupport extends LoadBalancerSupport
LoadBalancer implementation.
This implementation is dedicated for simple synchronous load balancers.
Consider using the LoadBalancerSupport if you want to support
the asynchronous routing engine in Camel.logshutdown, shuttingdown, started, starting, stopped, stopping, suspended, suspending| Constructor and Description |
|---|
SimpleLoadBalancerSupport() |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
process(Exchange exchange)
Processes the message exchange
|
boolean |
process(Exchange exchange,
AsyncCallback callback)
Processes the message exchange.
|
addProcessor, doShutdown, doStart, doStop, getId, getProcessors, hasNext, next, removeProcessor, setIddoResume, doSuspend, getStatus, getVersion, isRunAllowed, isStarted, isStarting, isStopped, isStopping, isStoppingOrStopped, isSuspended, isSuspending, isSuspendingOrSuspended, resume, shutdown, start, stop, suspendpublic 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.public abstract void process(Exchange exchange) throws Exception
Processorprocess in interface Processorprocess in class LoadBalancerSupportexchange - the message exchangeException - if an internal processing error has occurred.Apache Camel