|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.springframework.integration.store.AbstractMessageGroupStore
org.springframework.integration.redis.store.RedisMessageStore
public class RedisMessageStore
An implementation of both the MessageStore and MessageGroupStore
strategies that relies upon Redis for persistence.
| Field Summary |
|---|
| Fields inherited from class org.springframework.integration.store.AbstractMessageGroupStore |
|---|
logger |
| Constructor Summary | |
|---|---|
RedisMessageStore(org.springframework.data.redis.connection.RedisConnectionFactory connectionFactory)
|
|
| Method Summary | ||
|---|---|---|
|
addMessage(Message<T> message)
Put the provided Message into the MessageStore. |
|
MessageGroup |
addMessageToGroup(java.lang.Object groupId,
Message<?> message)
Add a Message to the group with the provided group ID. |
|
Message<?> |
getMessage(java.util.UUID id)
Return the Message with the given id, or null if no Message with that id exists in the MessageStore. |
|
long |
getMessageCount()
Optional attribute giving the number of messages in the store. |
|
MessageGroup |
getMessageGroup(java.lang.Object groupId)
Will create a new instance of SimpleMessageGroup initializing it with data collected from the Redis Message Store. |
|
java.util.Iterator<MessageGroup> |
iterator()
|
|
MessageGroup |
markMessageFromGroup(java.lang.Object groupId,
Message<?> messageToMark)
Mark the given Message within the group corresponding to the provided group ID. |
|
MessageGroup |
markMessageGroup(MessageGroup group)
Mark all messages in the provided group. |
|
Message<?> |
removeMessage(java.util.UUID id)
Remove the Message with the given id from the MessageStore, if present, and return it. |
|
MessageGroup |
removeMessageFromGroup(java.lang.Object groupId,
Message<?> messageToRemove)
Remove a Message from the group with the provided group ID. |
|
void |
removeMessageGroup(java.lang.Object groupId)
Remove the MessageGroup with the provided group ID. |
|
void |
setValueSerializer(org.springframework.data.redis.serializer.RedisSerializer<?> valueSerializer)
|
|
| Methods inherited from class org.springframework.integration.store.AbstractMessageGroupStore |
|---|
expireMessageGroups, getMarkedMessageCountForAllMessageGroups, getMessageCountForAllMessageGroups, getMessageGroupCount, registerMessageGroupExpiryCallback, setExpiryCallbacks |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public RedisMessageStore(org.springframework.data.redis.connection.RedisConnectionFactory connectionFactory)
| Method Detail |
|---|
public void setValueSerializer(org.springframework.data.redis.serializer.RedisSerializer<?> valueSerializer)
public Message<?> getMessage(java.util.UUID id)
MessageStore
getMessage in interface MessageStorepublic <T> Message<T> addMessage(Message<T> message)
MessageStoreMessageStore.getMessage(UUID) and MessageStore.removeMessage(UUID) behave properly. Since messages are
immutable, putting the same message more than once is a no-op.
addMessage in interface MessageStorepublic Message<?> removeMessage(java.util.UUID id)
MessageStore
removeMessage in interface MessageStore@ManagedAttribute public long getMessageCount()
MessageStore
getMessageCount in interface MessageStorepublic MessageGroup getMessageGroup(java.lang.Object groupId)
getMessageGroup in interface MessageGroupStore
public MessageGroup addMessageToGroup(java.lang.Object groupId,
Message<?> message)
addMessageToGroup in interface MessageGroupStoregroupId - the group id to store the message undermessage - a messagepublic MessageGroup markMessageGroup(MessageGroup group)
markMessageGroup in interface MessageGroupStoregroup - a MessageGroup with no unmarked messages
public MessageGroup removeMessageFromGroup(java.lang.Object groupId,
Message<?> messageToRemove)
removeMessageFromGroup in interface MessageGroupStoregroupId - the groupId for the group containing the messagemessageToRemove - the message to be removed
public MessageGroup markMessageFromGroup(java.lang.Object groupId,
Message<?> messageToMark)
markMessageFromGroup in interface MessageGroupStoregroupId - the groupId for the group containing the messagemessageToMark - the message to be markedpublic void removeMessageGroup(java.lang.Object groupId)
removeMessageGroup in interface MessageGroupStoregroupId - the id of the group to removepublic java.util.Iterator<MessageGroup> iterator()
iterator in interface java.lang.Iterable<MessageGroup>iterator in class AbstractMessageGroupStore
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||