public class DefaultConsumer extends ServiceSupport implements Consumer
| 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 |
|---|---|
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 this
Consumer consumes from. |
ExceptionHandler |
getExceptionHandler() |
Processor |
getProcessor() |
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) |
String |
toString() |
doResume, doShutdown, doSuspend, getStatus, getVersion, isRunAllowed, isStarted, isStarting, isStopped, isStopping, isSuspended, isSuspending, resume, shutdown, start, stop, suspendpublic Endpoint getEndpoint()
ConsumerConsumer consumes from.getEndpoint in interface Consumerpublic 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
ServiceSupportServiceSupport.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 ServiceSupportExceptionServiceSupport.doStart()protected void doStart()
throws Exception
ServiceSupportServiceSupport.doStop() for more details.doStart in class ServiceSupportExceptionServiceSupport.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