public class EventDrivenPollingConsumer extends PollingConsumerSupport implements Processor
PollingConsumer
which uses the normal
asynchronous consumer mechanism along with a BlockingQueue
to allow
the caller to pull messages on demand.log
shutdown, shuttingdown, started, starting, stopped, stopping, suspended, suspending
Constructor and Description |
---|
EventDrivenPollingConsumer(Endpoint endpoint) |
EventDrivenPollingConsumer(Endpoint endpoint,
BlockingQueue<Exchange> queue) |
Modifier and Type | Method and Description |
---|---|
protected void |
afterPoll() |
protected long |
beforePoll(long timeout) |
protected void |
doShutdown()
Implementations override this method to perform customized shutdown.
|
protected void |
doStart()
Implementations override this method to support customized start/stop.
|
protected void |
doStop()
Implementations override this method to support customized start/stop.
|
ExceptionHandler |
getInterruptedExceptionHandler() |
protected void |
handleInterruptedException(InterruptedException e) |
void |
process(Exchange exchange)
Processes the message exchange
|
Exchange |
receive()
Waits until a message is available and then returns it.
|
Exchange |
receive(long timeout)
Attempts to receive a message exchange, waiting up to the given timeout
to expire if a message is not yet available.
|
Exchange |
receiveNoWait()
Attempts to receive a message exchange immediately without waiting and
returning null if a message exchange is not available yet.
|
void |
setInterruptedExceptionHandler(ExceptionHandler interruptedExceptionHandler) |
getEndpoint, getExceptionHandler, handleException, setExceptionHandler, toString
doResume, doSuspend, getStatus, getVersion, isRunAllowed, isStarted, isStarting, isStopped, isStopping, isStoppingOrStopped, isSuspended, isSuspending, resume, shutdown, start, stop, suspend
public EventDrivenPollingConsumer(Endpoint endpoint)
public EventDrivenPollingConsumer(Endpoint endpoint, BlockingQueue<Exchange> queue)
public Exchange receiveNoWait()
PollingConsumer
UnitOfWork
on the returned Exchange
receiveNoWait
in interface PollingConsumer
public Exchange receive()
PollingConsumer
UnitOfWork
on the returned Exchange
receive
in interface PollingConsumer
public Exchange receive(long timeout)
PollingConsumer
UnitOfWork
on the returned Exchange
receive
in interface PollingConsumer
timeout
- the amount of time in milliseconds to wait for a message
before timing out and returning nullpublic void process(Exchange exchange) throws Exception
Processor
public ExceptionHandler getInterruptedExceptionHandler()
public void setInterruptedExceptionHandler(ExceptionHandler interruptedExceptionHandler)
protected void handleInterruptedException(InterruptedException e)
protected long beforePoll(long timeout)
protected void afterPoll()
protected void doStart() throws Exception
ServiceSupport
ServiceSupport.doStop()
for more details.doStart
in class ServiceSupport
Exception
ServiceSupport.doStop()
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 doShutdown() throws Exception
ServiceSupport
doShutdown
in class ServiceSupport
Exception
Apache Camel