public class MongoDbMessageStore extends AbstractMessageGroupStore implements MessageStore, org.springframework.beans.factory.BeanClassLoaderAware
MessageStore and MessageGroupStore
strategies that relies upon MongoDB for persistence.MessageGroupStore.MessageGroupCallbacklogger| Constructor and Description |
|---|
MongoDbMessageStore(org.springframework.data.mongodb.MongoDbFactory mongoDbFactory)
Create a MongoDbMessageStore using the provided
MongoDbFactory.and the default collection name. |
MongoDbMessageStore(org.springframework.data.mongodb.MongoDbFactory mongoDbFactory,
String collectionName)
Create a MongoDbMessageStore using the provided
MongoDbFactory and collection name. |
| Modifier and Type | Method and Description |
|---|---|
<T> Message<T> |
addMessage(Message<T> message)
Put the provided Message into the MessageStore.
|
MessageGroup |
addMessageToGroup(Object groupId,
Message<?> message)
Store a message with an association to a group id.
|
void |
completeGroup(Object groupId)
Completes this MessageGroup.
|
Message<?> |
getMessage(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(Object groupId)
Return all Messages currently in the MessageStore that were stored using
MessageGroupStore.addMessageToGroup(Object, Message) with this group id. |
Iterator<MessageGroup> |
iterator()
Returns the iterator of currently accumulated
MessageGroups |
int |
messageGroupSize(Object groupId)
Returns the size of this MessageGroup
|
Message<?> |
pollMessageFromGroup(Object groupId)
Polls Message from this
MessageGroup (in FIFO style if supported by the implementation)
while also removing the polled Message |
Message<?> |
removeMessage(UUID id)
Remove the Message with the given id from the MessageStore, if present, and return it.
|
MessageGroup |
removeMessageFromGroup(Object groupId,
Message<?> messageToRemove)
Persist a deletion on a single message from the group.
|
void |
removeMessageGroup(Object groupId)
Remove the message group with this id.
|
void |
setBeanClassLoader(ClassLoader classLoader) |
void |
setLastReleasedSequenceNumberForGroup(Object groupId,
int sequenceNumber)
Allows you to set the sequence number of the last released Message.
|
expireMessageGroups, getMessageCountForAllMessageGroups, getMessageGroupCount, isTimeoutOnIdle, registerMessageGroupExpiryCallback, setExpiryCallbacks, setTimeoutOnIdleclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitforEach, spliteratorpublic MongoDbMessageStore(org.springframework.data.mongodb.MongoDbFactory mongoDbFactory)
MongoDbFactory.and the default collection name.public MongoDbMessageStore(org.springframework.data.mongodb.MongoDbFactory mongoDbFactory,
String collectionName)
MongoDbFactory and collection name.public void setBeanClassLoader(ClassLoader classLoader)
setBeanClassLoader in interface org.springframework.beans.factory.BeanClassLoaderAwarepublic <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<?> getMessage(UUID id)
MessageStoregetMessage in interface MessageStore@ManagedAttribute public long getMessageCount()
MessageStoregetMessageCount in interface MessageStorepublic Message<?> removeMessage(UUID id)
MessageStoreremoveMessage in interface MessageStorepublic MessageGroup getMessageGroup(Object groupId)
MessageGroupStoreMessageGroupStore.addMessageToGroup(Object, Message) with this group id.getMessageGroup in interface MessageGroupStorepublic MessageGroup addMessageToGroup(Object groupId, Message<?> message)
MessageGroupStoreaddMessageToGroup in interface MessageGroupStoregroupId - the group id to store the message undermessage - a messagepublic MessageGroup removeMessageFromGroup(Object groupId, Message<?> messageToRemove)
MessageGroupStoreremoveMessageFromGroup in interface MessageGroupStoregroupId - the groupId for the group containing the messagemessageToRemove - the message to be removedpublic void removeMessageGroup(Object groupId)
MessageGroupStoreremoveMessageGroup in interface MessageGroupStoregroupId - the id of the group to removepublic Iterator<MessageGroup> iterator()
MessageGroupStoreMessageGroupsiterator in interface Iterable<MessageGroup>iterator in interface MessageGroupStorepublic void completeGroup(Object groupId)
MessageGroupStorecompleteGroup in interface MessageGroupStorepublic void setLastReleasedSequenceNumberForGroup(Object groupId, int sequenceNumber)
MessageGroupStoresetLastReleasedSequenceNumberForGroup in interface MessageGroupStorepublic Message<?> pollMessageFromGroup(Object groupId)
MessageGroupStoreMessageGroup (in FIFO style if supported by the implementation)
while also removing the polled MessagepollMessageFromGroup in interface MessageGroupStorepublic int messageGroupSize(Object groupId)
MessageGroupStoremessageGroupSize in interface MessageGroupStoreCopyright © 2016. All rights reserved.