public class SedaPollingConsumer extends PollingConsumerSupport implements IsSingleton
logshutdown, shuttingdown, started, starting, stopped, stopping, suspended, suspending| Constructor and Description |
|---|
SedaPollingConsumer(Endpoint endpoint) |
| 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.
|
SedaEndpoint |
getEndpoint()
Gets the endpoint associated with an object.
|
boolean |
isSingleton()
Whether this class supports being singleton or not.
|
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.
|
getExceptionHandler, handleException, setExceptionHandler, toStringdoResume, doShutdown, doSuspend, getStatus, getVersion, isRunAllowed, isStarted, isStarting, isStopped, isStopping, isStoppingOrStopped, isSuspended, isSuspending, isSuspendingOrSuspended, resume, shutdown, start, stop, suspendpublic SedaPollingConsumer(Endpoint endpoint)
public SedaEndpoint getEndpoint()
EndpointAwareProducer
or for consuming from for components like Consumer or RoutegetEndpoint in interface EndpointAwaregetEndpoint in class PollingConsumerSupportpublic Exchange receive()
PollingConsumerUnitOfWork
on the returned Exchangereceive in interface PollingConsumerpublic Exchange receiveNoWait()
PollingConsumerUnitOfWork
on the returned ExchangereceiveNoWait 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 nullprotected 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()public boolean isSingleton()
IsSingletonisSingleton in interface IsSingletonApache Camel