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.logshutdown, shuttingdown, started, starting, stopped, stopping, suspended, suspending| Constructor and Description |
|---|
EventDrivenPollingConsumer(Endpoint endpoint) |
EventDrivenPollingConsumer(Endpoint endpoint,
BlockingQueue<Exchange> queue) |
EventDrivenPollingConsumer(Endpoint endpoint,
int queueSize) |
| 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() |
int |
getQueueCapacity()
Gets the queue capacity.
|
int |
getQueueSize()
Gets the current queue size (no of elements in the queue).
|
protected void |
handleInterruptedException(InterruptedException e) |
boolean |
isBlockWhenFull() |
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 |
setBlockWhenFull(boolean blockWhenFull) |
void |
setInterruptedExceptionHandler(ExceptionHandler interruptedExceptionHandler) |
getEndpoint, getExceptionHandler, handleException, setExceptionHandler, toStringdoResume, doSuspend, getStatus, getVersion, isRunAllowed, isStarted, isStarting, isStopped, isStopping, isStoppingOrStopped, isSuspended, isSuspending, resume, shutdown, start, stop, suspendpublic EventDrivenPollingConsumer(Endpoint endpoint)
public EventDrivenPollingConsumer(Endpoint endpoint, int queueSize)
public EventDrivenPollingConsumer(Endpoint endpoint, BlockingQueue<Exchange> queue)
public boolean isBlockWhenFull()
public void setBlockWhenFull(boolean blockWhenFull)
public int getQueueCapacity()
public int getQueueSize()
public Exchange receiveNoWait()
PollingConsumerUnitOfWork
on the returned ExchangereceiveNoWait in interface PollingConsumerpublic Exchange receive()
PollingConsumerUnitOfWork
on the returned Exchangereceive in interface PollingConsumerpublic Exchange receive(long timeout)
PollingConsumerUnitOfWork
on the returned Exchangereceive in interface PollingConsumertimeout - the amount of time in milliseconds to wait for a message
before timing out and returning nullpublic void process(Exchange exchange) throws Exception
Processorpublic 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
ServiceSupportServiceSupport.doStop() for more details.doStart in class ServiceSupportExceptionServiceSupport.doStop()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 doShutdown() throws Exception
ServiceSupportdoShutdown in class ServiceSupportExceptionApache Camel