Class AbstractKeyValueMessageStore
java.lang.Object
org.springframework.integration.store.AbstractBatchingMessageGroupStore
org.springframework.integration.store.AbstractMessageGroupStore
org.springframework.integration.store.AbstractKeyValueMessageStore
- All Implemented Interfaces:
- Iterable<MessageGroup>,- BasicMessageGroupStore,- MessageGroupStore,- MessageStore
- Direct Known Subclasses:
- HazelcastMessageStore,- RedisMessageStore
public abstract class AbstractKeyValueMessageStore
extends AbstractMessageGroupStore
implements MessageStore
Base class for implementations of Key/Value style 
MessageGroupStore and MessageStore.- Since:
- 2.1
- Author:
- Oleg Zhurakousky, Gary Russell, Artem Bilan, Ngoc Nhan
- 
Nested Class SummaryNested classes/interfaces inherited from interface org.springframework.integration.store.MessageGroupStoreMessageGroupStore.MessageGroupCallback
- 
Field SummaryFieldsFields inherited from class org.springframework.integration.store.AbstractMessageGroupStorelogger
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedprotectedAbstractKeyValueMessageStore(String prefix) Construct an instance based on the provided prefix for keys to distinguish between different store instances in the same target key-value database.
- 
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.voidcompleteGroup(Object groupId) Completes this MessageGroup.protected voiddoAddMessage(Message<?> message) protected voiddoAddMessage(Message<?> message, Object groupId) protected abstract Collection<?>doListKeys(String keyPattern) protected abstract Objectprotected abstract voiddoRemoveAll(Collection<Object> ids) protected abstract ObjectdoRetrieve(Object id) protected abstract voidprotected abstract voiddoStoreIfAbsent(Object id, Object objectToStore) 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.Return the configured prefix for message group keys to distinguish between different store instances in the same target key-value database.Message<?>getMessage(UUID messageId) 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) Will create a new instance of SimpleMessageGroup if necessary.getMessageMetadata(UUID messageId) Return the configured prefix for message keys to distinguish between different store instances in the same target key-value database.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 id) 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 MessageGroup with the provided group ID.voidremoveMessagesFromGroup(Object groupId, Collection<Message<?>> messages) Persist the deletion of messages from the group.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.streamMessagesForGroup(Object groupId) Return a stream for messages stored in the provided group.Methods inherited from class org.springframework.integration.store.AbstractMessageGroupStoreaddMessageToGroup, copy, expireMessageGroups, getMessageCountForAllMessageGroups, getMessageGroupCount, getMessageGroupFactory, isTimeoutOnIdle, registerMessageGroupExpiryCallback, removeMessagesFromGroup, setExpiryCallbacks, setLazyLoadMessageGroups, 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 java.lang.IterableforEach, spliterator
- 
Field Details- 
MESSAGE_KEY_PREFIX- See Also:
 
- 
MESSAGE_GROUP_KEY_PREFIX- See Also:
 
 
- 
- 
Constructor Details- 
AbstractKeyValueMessageStoreprotected AbstractKeyValueMessageStore()
- 
AbstractKeyValueMessageStoreConstruct an instance based on the provided prefix for keys to distinguish between different store instances in the same target key-value database. Defaults to an empty string - no prefix. The actual prefix for messages isprefix + MESSAGE_; for message groups -prefix + GROUP_OF_MESSAGES_- Parameters:
- prefix- the prefix to use
- Since:
- 4.3.12
 
 
- 
- 
Method Details- 
getMessagePrefixReturn the configured prefix for message keys to distinguish between different store instances in the same target key-value database. Defaults to the "MESSAGE_" - without a custom prefix.- Returns:
- the prefix for keys
- Since:
- 4.3.12
 
- 
getGroupPrefixReturn the configured prefix for message group keys to distinguish between different store instances in the same target key-value database. Defaults to the "GROUP_OF_MESSAGES_" - without custom prefix.- Returns:
- the prefix for keys
- Since:
- 4.3.12
 
- 
getMessage- Specified by:
- getMessagein interface- MessageStore
- Parameters:
- messageId- 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:
- messageId- 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).
 
- 
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.
 
- 
doAddMessage
- 
doAddMessage
- 
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:
- id- the message identifier.
- Returns:
- the message (if any).
 
- 
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.
 
- 
getMessageGroupWill create a new instance of SimpleMessageGroup if necessary.- Specified by:
- getMessageGroupin interface- BasicMessageGroupStore
- Parameters:
- groupId- The group identifier.
- Returns:
- A group of messages, empty if none exists for this key.
 
- 
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.
 
- 
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.
 
- 
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.
 
- 
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.
 
- 
removeMessageGroupRemove the MessageGroup with the provided group ID.- Specified by:
- removeMessageGroupin interface- BasicMessageGroupStore
- Parameters:
- groupId- The id of the group to remove.
 
- 
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.
 
- 
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.
 
- 
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.
 
- 
streamMessagesForGroupDescription copied from interface:MessageGroupStoreReturn a stream for messages stored in the provided group. The persistent implementations return a Stream which has to be closed once fully processed (e.g. through a try-with-resources clause). By default, it streams a result ofMessageGroupStore.getMessagesForGroup(Object).- Specified by:
- streamMessagesForGroupin interface- MessageGroupStore
- Parameters:
- groupId- the group id to retrieve messages.
- Returns:
- the Streamfor messages in this group.
 
- 
iterator- Specified by:
- iteratorin interface- Iterable<MessageGroup>
- Specified by:
- iteratorin interface- MessageGroupStore
- Returns:
- The iterator of currently accumulated MessageGroups.
 
- 
messageGroupSizeDescription copied from interface:BasicMessageGroupStoreReturn the size of this MessageGroup.- Specified by:
- messageGroupSizein interface- BasicMessageGroupStore
- Parameters:
- groupId- The group identifier.
- Returns:
- The size.
 
- 
doRetrieve
- 
doStore
- 
doStoreIfAbsent
- 
doRemove
- 
doRemoveAll
- 
doListKeys
 
-