public class DefaultConsumer extends ServiceSupport implements Consumer, RouteAware
Modifier and Type | Field and Description |
---|---|
protected org.slf4j.Logger |
log |
shutdown, shuttingdown, started, starting, stopped, stopping, suspended, suspending
Constructor and Description |
---|
DefaultConsumer(Endpoint endpoint,
Processor processor) |
Modifier and Type | Method and Description |
---|---|
UnitOfWork |
createUoW(Exchange exchange)
If the consumer needs to defer done the
UnitOfWork on
the processed Exchange then this method should be use to create and start
the UnitOfWork on the exchange. |
void |
doneUoW(Exchange exchange)
If the consumer needs to defer done the
UnitOfWork on
the processed Exchange then this method should be executed when the consumer
is finished processing the message. |
protected void |
doStart()
Implementations override this method to support customized start/stop.
|
protected void |
doStop()
Implementations override this method to support customized start/stop.
|
AsyncProcessor |
getAsyncProcessor()
Provides an
AsyncProcessor interface to the configured
processor on the consumer. |
Endpoint |
getEndpoint()
Gets the endpoint associated with an object.
|
ExceptionHandler |
getExceptionHandler() |
Processor |
getProcessor() |
Route |
getRoute()
Gets the
Route |
protected void |
handleException(String message,
Throwable t)
Handles the given exception using the
getExceptionHandler() |
protected void |
handleException(Throwable t)
Handles the given exception using the
getExceptionHandler() |
void |
setExceptionHandler(ExceptionHandler exceptionHandler) |
void |
setRoute(Route route)
Injects the
Route |
String |
toString() |
doResume, doShutdown, doSuspend, getStatus, getVersion, isRunAllowed, isStarted, isStarting, isStopped, isStopping, isStoppingOrStopped, isSuspended, isSuspending, resume, shutdown, start, stop, suspend
protected final org.slf4j.Logger log
public DefaultConsumer(Endpoint endpoint, Processor processor)
public Route getRoute()
RouteAware
Route
getRoute
in interface RouteAware
public void setRoute(Route route)
RouteAware
Route
setRoute
in interface RouteAware
route
- the routepublic UnitOfWork createUoW(Exchange exchange) throws Exception
UnitOfWork
on
the processed Exchange
then this method should be use to create and start
the UnitOfWork
on the exchange.exchange
- the exchangeException
- is thrown if error starting the unit of workdoneUoW(org.apache.camel.Exchange)
public void doneUoW(Exchange exchange)
UnitOfWork
on
the processed Exchange
then this method should be executed when the consumer
is finished processing the message.exchange
- the exchangecreateUoW(org.apache.camel.Exchange)
public Endpoint getEndpoint()
EndpointAware
Producer
or for consuming from for components like Consumer
or Route
getEndpoint
in interface EndpointAware
public Processor getProcessor()
public AsyncProcessor getAsyncProcessor()
AsyncProcessor
interface to the configured
processor on the consumer. If the processor does not implement the interface,
it will be adapted so that it does.public ExceptionHandler getExceptionHandler()
public void setExceptionHandler(ExceptionHandler exceptionHandler)
protected void doStop() throws Exception
ServiceSupport
ServiceSupport.doStop()
method when
the service is being stopped. This method will also be invoked
if the service is still in uninitialized state (eg has not
been started). The method is always called to allow the service
to do custom logic when the service is being stopped, such as when
CamelContext
is shutting down.doStop
in class ServiceSupport
Exception
ServiceSupport.doStart()
protected void doStart() throws Exception
ServiceSupport
ServiceSupport.doStop()
for more details.doStart
in class ServiceSupport
Exception
ServiceSupport.doStop()
protected void handleException(Throwable t)
getExceptionHandler()
t
- the exception to handleprotected void handleException(String message, Throwable t)
getExceptionHandler()
message
- additional message about the exceptiont
- the exception to handleApache Camel