org.springframework.integration.endpoint
Class AbstractEndpoint
java.lang.Object
org.springframework.integration.context.IntegrationObjectSupport
org.springframework.integration.endpoint.AbstractEndpoint
- All Implemented Interfaces:
- org.springframework.beans.factory.BeanFactoryAware, org.springframework.beans.factory.BeanNameAware, org.springframework.beans.factory.InitializingBean, org.springframework.context.Lifecycle
- Direct Known Subclasses:
- AbstractMessagingGateway, AbstractPollingEndpoint, EventDrivenConsumer, GatewayProxyFactoryBean, JmsMessageDrivenEndpoint, MessageProducerSupport
public abstract class AbstractEndpoint
- extends IntegrationObjectSupport
- implements org.springframework.context.Lifecycle, org.springframework.beans.factory.InitializingBean
The base class for Message Endpoint implementations.
This class implements Lifecycle and provides an autoStartup
property. If true, the endpoint will start automatically upon
initialization. Otherwise, it will require an explicit invocation of its
start() method. The default value is true.
To require explicit startup, provide a value of false
to the setAutoStartup(boolean) method.
- Author:
- Mark Fisher
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
AbstractEndpoint
public AbstractEndpoint()
setAutoStartup
public void setAutoStartup(boolean autoStartup)
setTaskScheduler
public void setTaskScheduler(TaskScheduler taskScheduler)
- Overrides:
setTaskScheduler in class IntegrationObjectSupport
afterPropertiesSet
public final void afterPropertiesSet()
- Specified by:
afterPropertiesSet in interface org.springframework.beans.factory.InitializingBean
isRunning
public final boolean isRunning()
- Specified by:
isRunning in interface org.springframework.context.Lifecycle
start
public final void start()
- Specified by:
start in interface org.springframework.context.Lifecycle
stop
public final void stop()
- Specified by:
stop in interface org.springframework.context.Lifecycle
onInit
protected void onInit()
throws java.lang.Exception
- Throws:
java.lang.Exception
doStart
protected abstract void doStart()
- Subclasses must implement this method with the start behavior.
This method will be invoked while holding the
lifecycleLock.
doStop
protected abstract void doStop()
- Subclasses must implement this method with the stop behavior.
This method will be invoked while holding the
lifecycleLock.