Class SimpleMessageStore
java.lang.Object
org.springframework.integration.store.AbstractBatchingMessageGroupStore
org.springframework.integration.store.AbstractMessageGroupStore
org.springframework.integration.store.SimpleMessageStore
- All Implemented Interfaces:
- Iterable<MessageGroup>,- BasicMessageGroupStore,- ChannelMessageStore,- MessageGroupStore,- MessageStore
public class SimpleMessageStore
extends AbstractMessageGroupStore
implements MessageStore, ChannelMessageStore
Map-based in-memory implementation of 
MessageStore and MessageGroupStore.
 Enforces a maximum capacity for the store.- Since:
- 2.0
- Author:
- Iwein Fuld, Mark Fisher, Dave Syer, Oleg Zhurakousky, Gary Russell, Ryan Barker, Artem Bilan
- 
Nested Class SummaryNested classes/interfaces inherited from interface org.springframework.integration.store.MessageGroupStoreMessageGroupStore.MessageGroupCallback
- 
Field SummaryFields inherited from class org.springframework.integration.store.AbstractMessageGroupStorelogger
- 
Constructor SummaryConstructorsConstructorDescriptionCreate a SimpleMessageStore with unlimited capacity.SimpleMessageStore(int capacity) Creates a SimpleMessageStore with the same capacity for individual and grouped messages.SimpleMessageStore(int individualCapacity, int groupCapacity) Creates a SimpleMessageStore with a maximum size limited by the given capacity, or unlimited size if the given capacity is less than 1.SimpleMessageStore(int individualCapacity, int groupCapacity, long upperBoundTimeout) Create a SimpleMessageStore with a maximum size limited by the given capacity and the timeout in millisecond to wait for the empty slot in the store.SimpleMessageStore(int individualCapacity, int groupCapacity, long upperBoundTimeout, LockRegistry lockRegistry) Creates a SimpleMessageStore with a maximum size limited by the given capacity, the timeout in millisecond to wait for the empty slot in the store and LockRegistry for the message group operations concurrency.SimpleMessageStore(int individualCapacity, int groupCapacity, LockRegistry lockRegistry) Creates a SimpleMessageStore with a maximum size limited by the given capacity and LockRegistry for the message group operations concurrency.
- 
Method SummaryModifier and TypeMethodDescription<T> Message<T>addMessage(Message<T> message) Put the provided Message into the MessageStore.voidaddMessagesToGroup(Object groupId, Message<?>... messages) Store messages with an association to a group id.voidclearMessageGroup(Object groupId) voidcompleteGroup(Object groupId) Completes this MessageGroup.protected MessageGroupcopy(MessageGroup group) Used by expireMessageGroups.getGroupMetadata(Object groupId) Obtain the group metadata without fetching any messages; must supply all other group properties; may include the id of the first message.Message<?>getMessage(UUID key) longOptional attribute giving the number of messages in the store.Message<?>getMessageFromGroup(Object groupId, UUID messageId) Retrieve aMessagefrom a group by id.getMessageGroup(Object groupId) Return all Messages currently in the MessageStore that were stored usingBasicMessageGroupStore.addMessageToGroup(Object, Message)with this group id.Collection<Message<?>>getMessagesForGroup(Object groupId) Retrieve messages for the provided group id.Message<?>getOneMessageFromGroup(Object groupId) Return the oneMessagefromMessageGroup.iterator()intmessageGroupSize(Object groupId) Return the size of this MessageGroup.Message<?>pollMessageFromGroup(Object groupId) Poll Message from thisMessageGroup(in FIFO style if supported by the implementation) while also removing the polledMessage.Message<?>removeMessage(UUID key) Remove the Message with the given id from the MessageStore, if present, and return it.booleanremoveMessageFromGroupById(Object groupId, UUID messageId) Deletion the message from the group.voidremoveMessageGroup(Object groupId) Remove the message group with this id.voidremoveMessagesFromGroup(Object groupId, Collection<Message<?>> messages) Persist the deletion of messages from the group.voidsetCopyOnGet(boolean copyOnGet) Set as false to disable copying the group ingetMessageGroup(Object).voidsetGroupCondition(Object groupId, String condition) Add a condition sentence into the group.voidsetLastReleasedSequenceNumberForGroup(Object groupId, int sequenceNumber) Allows you to set the sequence number of the last released Message.voidsetLazyLoadMessageGroups(boolean lazyLoadMessageGroups) Specify if the result of theBasicMessageGroupStore.getMessageGroup(Object)should be wrapped to thePersistentMessageGroup- a lazy-load proxy for messages in group Defaults totrue.voidsetLockRegistry(LockRegistry lockRegistry) Methods inherited from class org.springframework.integration.store.AbstractMessageGroupStoreaddMessageToGroup, expireMessageGroups, getMessageCountForAllMessageGroups, getMessageGroupCount, getMessageGroupFactory, isTimeoutOnIdle, registerMessageGroupExpiryCallback, removeMessagesFromGroup, setExpiryCallbacks, setTimeoutOnIdleMethods inherited from class org.springframework.integration.store.AbstractBatchingMessageGroupStoregetRemoveBatchSize, setMessageGroupFactory, setRemoveBatchSizeMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.springframework.integration.store.BasicMessageGroupStoreaddMessageToGroupMethods inherited from interface java.lang.IterableforEach, spliteratorMethods inherited from interface org.springframework.integration.store.MessageGroupStorestreamMessagesForGroup
- 
Constructor Details- 
SimpleMessageStorepublic SimpleMessageStore(int individualCapacity, int groupCapacity) Creates a SimpleMessageStore with a maximum size limited by the given capacity, or unlimited size if the given capacity is less than 1. The capacities are applied independently to messages stored viaaddMessage(Message)and to those stored viaAbstractMessageGroupStore.addMessageToGroup(Object, Message). In both cases the capacity applies to the number of messages that can be stored, and once that limit is reached attempting to store another will result in an exception.- Parameters:
- individualCapacity- The message capacity.
- groupCapacity- The capacity of each group.
 
- 
SimpleMessageStorepublic SimpleMessageStore(int individualCapacity, int groupCapacity, long upperBoundTimeout) Create a SimpleMessageStore with a maximum size limited by the given capacity and the timeout in millisecond to wait for the empty slot in the store.- Parameters:
- individualCapacity- The message capacity.
- groupCapacity- The capacity of each group.
- upperBoundTimeout- The time to wait if the store is at max capacity.
- Since:
- 4.3
- See Also:
 
- 
SimpleMessageStoreCreates a SimpleMessageStore with a maximum size limited by the given capacity and LockRegistry for the message group operations concurrency.- Parameters:
- individualCapacity- The message capacity.
- groupCapacity- The capacity of each group.
- lockRegistry- The lock registry.
- See Also:
 
- 
SimpleMessageStorepublic SimpleMessageStore(int individualCapacity, int groupCapacity, long upperBoundTimeout, LockRegistry lockRegistry) Creates a SimpleMessageStore with a maximum size limited by the given capacity, the timeout in millisecond to wait for the empty slot in the store and LockRegistry for the message group operations concurrency.- Parameters:
- individualCapacity- The message capacity.
- groupCapacity- The capacity of each group.
- upperBoundTimeout- The time to wait if the store is at max capacity
- lockRegistry- The lock registry.
- Since:
- 4.3
 
- 
SimpleMessageStorepublic SimpleMessageStore(int capacity) Creates a SimpleMessageStore with the same capacity for individual and grouped messages.- Parameters:
- capacity- The capacity.
 
- 
SimpleMessageStorepublic SimpleMessageStore()Create a SimpleMessageStore with unlimited capacity.
 
- 
- 
Method Details- 
setCopyOnGetpublic void setCopyOnGet(boolean copyOnGet) Set as false to disable copying the group ingetMessageGroup(Object). Starting with 4.1, this is false by default.- Parameters:
- copyOnGet- True to copy, false to not.
- Since:
- 4.0.1
 
- 
setLockRegistry
- 
setLazyLoadMessageGroupspublic void setLazyLoadMessageGroups(boolean lazyLoadMessageGroups) Description copied from class:AbstractMessageGroupStoreSpecify if the result of theBasicMessageGroupStore.getMessageGroup(Object)should be wrapped to thePersistentMessageGroup- a lazy-load proxy for messages in group Defaults totrue.The target logic is based on the SimpleMessageGroupFactory.GroupType.PERSISTENT.- Overrides:
- setLazyLoadMessageGroupsin class- AbstractMessageGroupStore
- Parameters:
- lazyLoadMessageGroups- the- booleanflag to use.
 
- 
getMessageCountDescription copied from interface:MessageStoreOptional attribute giving the number of messages in the store. Implementations may decline to respond by throwing an exception.- Specified by:
- getMessageCountin interface- MessageStore
- Returns:
- The number of messages.
 
- 
addMessageDescription copied from interface:MessageStorePut the provided Message into the MessageStore. The store may need to mutate the message internally, and if it does then the return value can be different than the input. The id of the return value will be used as an index so that theMessageStore.getMessage(UUID)andMessageStore.removeMessage(UUID)behave properly. Since messages are immutable, putting the same message more than once is a no-op.- Specified by:
- addMessagein interface- MessageStore
- Type Parameters:
- T- The payload type.
- Parameters:
- message- The message.
- Returns:
- The message that was stored.
 
- 
getMessage- Specified by:
- getMessagein interface- MessageStore
- Parameters:
- key- The message identifier.
- Returns:
- The Message with the given id, or null if no Message with that id exists in the MessageStore.
 
- 
getMessageMetadataDescription copied from interface:MessageStore- Specified by:
- getMessageMetadatain interface- MessageStore
- Parameters:
- id- The message identifier.
- Returns:
- The MessageMetadata with the given id, or null if no Message with that id exists in the MessageStore or the message has no metadata (legacy message from an earlier version).
 
- 
removeMessageDescription copied from interface:MessageStoreRemove the Message with the given id from the MessageStore, if present, and return it. If no Message with that id is present in the store, this will returnnull. If this method is implemented on aMessageGroupStore, the message is removed from the store only if no groups holding this message.- Specified by:
- removeMessagein interface- MessageStore
- Parameters:
- key- the message identifier.
- Returns:
- the message (if any).
 
- 
getMessageGroupDescription copied from interface:BasicMessageGroupStoreReturn all Messages currently in the MessageStore that were stored usingBasicMessageGroupStore.addMessageToGroup(Object, Message)with this group id.- Specified by:
- getMessageGroupin interface- BasicMessageGroupStore
- Parameters:
- groupId- The group identifier.
- Returns:
- A group of messages, empty if none exists for this key.
 
- 
copyDescription copied from class:AbstractMessageGroupStoreUsed by expireMessageGroups. We need to return a snapshot of the group at the time the reaper runs, so we can properly detect if the group changed between now and the attempt to expire the group. Not necessary for persistent stores, so the default behavior is to just return the group.- Overrides:
- copyin class- AbstractMessageGroupStore
- Parameters:
- group- The group.
- Returns:
- The group, or a copy.
 
- 
addMessagesToGroupDescription copied from interface:MessageGroupStoreStore messages with an association to a group id. This can be used to group messages together.- Specified by:
- addMessagesToGroupin interface- MessageGroupStore
- Parameters:
- groupId- The group id to store messages under.
- messages- The messages to add.
 
- 
removeMessageGroupDescription copied from interface:BasicMessageGroupStoreRemove the message group with this id.- Specified by:
- removeMessageGroupin interface- BasicMessageGroupStore
- Parameters:
- groupId- The id of the group to remove.
 
- 
removeMessagesFromGroupDescription copied from interface:MessageGroupStorePersist the deletion of messages from the group.- Specified by:
- removeMessagesFromGroupin interface- MessageGroupStore
- Parameters:
- groupId- The groupId for the group containing the message(s).
- messages- The messages to be removed.
 
- 
getMessageFromGroupDescription copied from interface:MessageGroupStoreRetrieve aMessagefrom a group by id. Returnnullif message does not belong to the requested group.- Specified by:
- getMessageFromGroupin interface- MessageGroupStore
- Parameters:
- groupId- The groupId for the group containing the message.
- messageId- The message id.
- Returns:
- message by id if it belongs to requested group.
 
- 
removeMessageFromGroupByIdDescription copied from interface:MessageGroupStoreDeletion the message from the group.- Specified by:
- removeMessageFromGroupByIdin interface- MessageGroupStore
- Parameters:
- groupId- The groupId for the group containing the message.
- messageId- The message id to be removed.
- Returns:
- true if message has been removed.
 
- 
iterator- Specified by:
- iteratorin interface- Iterable<MessageGroup>
- Specified by:
- iteratorin interface- MessageGroupStore
- Returns:
- The iterator of currently accumulated MessageGroups.
 
- 
setGroupConditionDescription copied from interface:MessageGroupStoreAdd a condition sentence into the group. Can be used later on for making some decisions for group, e.g. release strategy for correlation handler can consult this condition instead of iterating all the messages in group.- Specified by:
- setGroupConditionin interface- MessageGroupStore
- Parameters:
- groupId- The group identifier.
- condition- The condition to store into the group.
 
- 
setLastReleasedSequenceNumberForGroupDescription copied from interface:MessageGroupStoreAllows you to set the sequence number of the last released Message. Used for Resequencing use cases- Specified by:
- setLastReleasedSequenceNumberForGroupin interface- MessageGroupStore
- Parameters:
- groupId- The group identifier.
- sequenceNumber- The sequence number.
 
- 
completeGroupDescription copied from interface:MessageGroupStoreCompletes this MessageGroup. Completion of the MessageGroup generally means that this group should not be allowing anymore mutating operation to be performed on it. For example any attempt to add/remove new Message form the group should not be allowed.- Specified by:
- completeGroupin interface- MessageGroupStore
- Parameters:
- groupId- The group identifier.
 
- 
pollMessageFromGroupDescription copied from interface:BasicMessageGroupStorePoll Message from thisMessageGroup(in FIFO style if supported by the implementation) while also removing the polledMessage.- Specified by:
- pollMessageFromGroupin interface- BasicMessageGroupStore
- Parameters:
- groupId- The group identifier.
- Returns:
- The message.
 
- 
messageGroupSizeDescription copied from interface:BasicMessageGroupStoreReturn the size of this MessageGroup.- Specified by:
- messageGroupSizein interface- BasicMessageGroupStore
- Parameters:
- groupId- The group identifier.
- Returns:
- The size.
 
- 
getGroupMetadataDescription copied from interface:MessageGroupStoreObtain the group metadata without fetching any messages; must supply all other group properties; may include the id of the first message.- Specified by:
- getGroupMetadatain interface- MessageGroupStore
- Overrides:
- getGroupMetadatain class- AbstractMessageGroupStore
- Parameters:
- groupId- The group id.
- Returns:
- The metadata.
 
- 
getOneMessageFromGroupDescription copied from interface:MessageGroupStoreReturn the oneMessagefromMessageGroup.- Specified by:
- getOneMessageFromGroupin interface- MessageGroupStore
- Parameters:
- groupId- The group identifier.
- Returns:
- the Message.
 
- 
getMessagesForGroupDescription copied from interface:MessageGroupStoreRetrieve messages for the provided group id.- Specified by:
- getMessagesForGroupin interface- MessageGroupStore
- Parameters:
- groupId- The group id to retrieve messages for.
- Returns:
- the messages for group.
 
- 
clearMessageGroup
 
-