org.springframework.integration.channel
Class AbstractSubscribableChannel
java.lang.Object
org.springframework.integration.context.IntegrationObjectSupport
org.springframework.integration.channel.AbstractMessageChannel
org.springframework.integration.channel.AbstractSubscribableChannel
- All Implemented Interfaces:
- BeanFactoryAware, BeanNameAware, InitializingBean, MessageChannel, SubscribableChannel, NamedComponent
- Direct Known Subclasses:
- DirectChannel, ExecutorChannel, PublishSubscribeChannel
public abstract class AbstractSubscribableChannel
- extends AbstractMessageChannel
- implements SubscribableChannel
Base implementation of MessageChannel
that invokes the subscribed
handler(s)
by delegating to a MessageDispatcher
.
- Author:
- Mark Fisher
Methods inherited from class org.springframework.integration.context.IntegrationObjectSupport |
afterPropertiesSet, getBeanFactory, getChannelResolver, getComponentName, getConversionService, getTaskScheduler, onInit, setBeanFactory, setBeanName, setChannelResolver, setComponentName, setTaskScheduler, toString, writeMessageHistory |
AbstractSubscribableChannel
public AbstractSubscribableChannel()
subscribe
public boolean subscribe(MessageHandler handler)
- Description copied from interface:
SubscribableChannel
- Register a
MessageHandler
as a subscriber to this channel.
- Specified by:
subscribe
in interface SubscribableChannel
unsubscribe
public boolean unsubscribe(MessageHandler handle)
- Description copied from interface:
SubscribableChannel
- Remove a
MessageHandler
from the subscribers of this channel.
- Specified by:
unsubscribe
in interface SubscribableChannel
doSend
protected boolean doSend(Message<?> message,
long timeout)
- Description copied from class:
AbstractMessageChannel
- Subclasses must implement this method. A non-negative timeout indicates
how long to wait if the channel is at capacity (if the value is 0, it
must return immediately with or without success). A negative timeout
value indicates that the method should block until either the message is
accepted or the blocking thread is interrupted.
- Specified by:
doSend
in class AbstractMessageChannel
getDispatcher
protected abstract MessageDispatcher getDispatcher()
Copyright © 2010. All Rights Reserved.