@ManagedResource public class RedisQueueMessageDrivenEndpoint extends MessageProducerSupport implements ApplicationEventPublisherAware
Modifier and Type | Field and Description |
---|---|
static long |
DEFAULT_RECEIVE_TIMEOUT |
static long |
DEFAULT_RECOVERY_INTERVAL |
logger
Constructor and Description |
---|
RedisQueueMessageDrivenEndpoint(String queueName,
RedisConnectionFactory connectionFactory) |
Modifier and Type | Method and Description |
---|---|
void |
clearQueue()
Clear the Redis Queue specified by
boundListOperations . |
protected void |
doStart()
Takes no action by default.
|
protected void |
doStop()
Takes no action by default.
|
String |
getComponentType()
Subclasses may implement this method to provide component type information.
|
long |
getQueueSize()
Returns the size of the Queue specified by
boundListOperations . |
boolean |
isListening() |
protected void |
onInit()
Subclasses may implement this for initialization logic.
|
void |
setApplicationEventPublisher(ApplicationEventPublisher applicationEventPublisher) |
void |
setErrorChannel(MessageChannel errorChannel) |
void |
setExpectMessage(boolean expectMessage)
When data is retrieved from the Redis queue, does the returned data represent
just the payload for a Message, or does the data represent a serialized
Message ?. |
void |
setReceiveTimeout(long receiveTimeout)
This timeout (milliseconds) is used when retrieving elements from the queue
specified by
boundListOperations . |
void |
setRecoveryInterval(long recoveryInterval) |
void |
setSerializer(RedisSerializer<?> serializer) |
void |
setTaskExecutor(Executor taskExecutor) |
sendMessage, setOutputChannel, setSendTimeout, setShouldTrack
getPhase, isAutoStartup, isRunning, setAutoStartup, setPhase, setTaskScheduler, start, stop, stop
afterPropertiesSet, getApplicationContextId, getBeanFactory, getComponentName, getConversionService, getIntegrationProperties, getIntegrationProperty, getMessageBuilderFactory, getTaskScheduler, setApplicationContext, setBeanFactory, setBeanName, setComponentName, setConversionService, setMessageBuilderFactory, toString
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
getComponentName
public static final long DEFAULT_RECEIVE_TIMEOUT
public static final long DEFAULT_RECOVERY_INTERVAL
public RedisQueueMessageDrivenEndpoint(String queueName, RedisConnectionFactory connectionFactory)
queueName
- Must not be an empty StringconnectionFactory
- Must not be nullpublic void setApplicationEventPublisher(ApplicationEventPublisher applicationEventPublisher)
setApplicationEventPublisher
in interface ApplicationEventPublisherAware
public void setSerializer(RedisSerializer<?> serializer)
public void setExpectMessage(boolean expectMessage)
Message
?. expectMessage
defaults to false. This means
the retrieved data will be used as the payload for a new Spring Integration
Message. Otherwise, the data is deserialized as Spring Integration
Message.expectMessage
- Defaults to falsepublic void setReceiveTimeout(long receiveTimeout)
boundListOperations
.
If the queue does contain elements, the data is retrieved immediately. However, if the queue is empty, the Redis connection is blocked until either an element can be retrieved from the queue or until the specified timeout passes.
A timeout of zero can be used to block indefinitely. If not set explicitly
the timeout value will default to 1000
See also: http://redis.io/commands/brpop
receiveTimeout
- Must be non-negative. Specified in milliseconds.public void setTaskExecutor(Executor taskExecutor)
public void setErrorChannel(MessageChannel errorChannel)
setErrorChannel
in class MessageProducerSupport
public void setRecoveryInterval(long recoveryInterval)
protected void onInit()
IntegrationObjectSupport
onInit
in class MessageProducerSupport
public String getComponentType()
IntegrationObjectSupport
getComponentType
in interface NamedComponent
getComponentType
in class IntegrationObjectSupport
protected void doStart()
MessageProducerSupport
doStart
in class MessageProducerSupport
protected void doStop()
MessageProducerSupport
doStop
in class MessageProducerSupport
public boolean isListening()
@ManagedMetric public long getQueueSize()
boundListOperations
. The queue is
represented by a Redis list. If the queue does not exist 0
is returned. See also http://redis.io/commands/llen@ManagedOperation public void clearQueue()
boundListOperations
.