Package org.apache.activemq.store
Interface TopicMessageStore
- All Superinterfaces:
MessageStore,org.apache.activemq.Service
- All Known Subinterfaces:
TopicReferenceStore
- All Known Implementing Classes:
MemoryTopicMessageStore,ProxyTopicMessageStore
A MessageStore for durable topic subscriptions
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.activemq.store.MessageStore
MessageStore.StoreType -
Method Summary
Modifier and TypeMethodDescriptionvoidacknowledge(ConnectionContext context, String clientId, String subscriptionName, org.apache.activemq.command.MessageId messageId, org.apache.activemq.command.MessageAck ack) Stores the last acknowledged messgeID for the given subscription so that we can recover and commence dispatching messages from the last checkpointvoidaddSubscription(org.apache.activemq.command.SubscriptionInfo subscriptionInfo, boolean retroactive) Inserts the subscriber info due to a subscription changevoiddeleteSubscription(String clientId, String subscriptionName) org.apache.activemq.command.SubscriptionInfo[]Lists all the durable subscriptions for a given destination.intgetMessageCount(String clientId, String subscriberName) Get the number of messages ready to deliver from the store to a durable subscriberlonggetMessageSize(String clientId, String subscriberName) Get the total size of the messages ready to deliver from the store to the durable subscriberThe subscription metrics contained in this storeorg.apache.activemq.command.SubscriptionInfolookupSubscription(String clientId, String subscriptionName) Finds the subscriber entry for the given consumer infoMap<SubscriptionKey,List<org.apache.activemq.command.Message>> recoverExpired(Set<SubscriptionKey> subs, int maxBrowse, MessageRecoveryListener listener) Iterates over the pending messages in a topic and recovers any expired messages found for each of the subscriptions up to the maximum number of messages to search.voidrecoverNextMessages(String clientId, String subscriptionName, int maxReturned, MessageRecoveryListener listener) For an active subscription - retrieve messages from the store for the subscriber after the lastMessageId messageIdvoidrecoverSubscription(String clientId, String subscriptionName, MessageRecoveryListener listener) For the new subscription find the last acknowledged message ID and then find any new messages since then and dispatch them to the subscription.voidresetBatching(String clientId, String subscriptionName) A hint to the Store to reset any batching state for a durable subscriberMethods inherited from interface org.apache.activemq.store.MessageStore
addMessage, addMessage, asyncAddQueueMessage, asyncAddQueueMessage, asyncAddTopicMessage, asyncAddTopicMessage, dispose, getDestination, getMessage, getMessageCount, getMessageSize, getMessageStoreStatistics, getType, isEmpty, isPrioritizedMessages, recover, recoverMessages, recoverNextMessages, registerIndexListener, removeAllMessages, removeAsyncMessage, removeMessage, resetBatching, setBatch, setMemoryUsage, setPrioritizedMessages, updateMessageMethods inherited from interface org.apache.activemq.Service
start, stop
-
Method Details
-
acknowledge
void acknowledge(ConnectionContext context, String clientId, String subscriptionName, org.apache.activemq.command.MessageId messageId, org.apache.activemq.command.MessageAck ack) throws IOException Stores the last acknowledged messgeID for the given subscription so that we can recover and commence dispatching messages from the last checkpoint- Parameters:
context-clientId-subscriptionName-messageId-ack-- Throws:
IOException
-
deleteSubscription
- Parameters:
clientId-subscriptionName-- Throws:
IOExceptionjakarta.jms.JMSException
-
recoverSubscription
void recoverSubscription(String clientId, String subscriptionName, MessageRecoveryListener listener) throws Exception For the new subscription find the last acknowledged message ID and then find any new messages since then and dispatch them to the subscription. e.g. if we dispatched some messages to a new durable topic subscriber, then went down before acknowledging any messages, we need to know the correct point from which to recover from.- Parameters:
clientId-subscriptionName-listener-- Throws:
Exception
-
recoverNextMessages
void recoverNextMessages(String clientId, String subscriptionName, int maxReturned, MessageRecoveryListener listener) throws Exception For an active subscription - retrieve messages from the store for the subscriber after the lastMessageId messageId- Parameters:
clientId-subscriptionName-maxReturned-listener-- Throws:
Exception
-
resetBatching
A hint to the Store to reset any batching state for a durable subscriber- Parameters:
clientId-subscriptionName-
-
getMessageCount
Get the number of messages ready to deliver from the store to a durable subscriber- Parameters:
clientId-subscriberName-- Returns:
- the outstanding message count
- Throws:
IOException
-
getMessageSize
Get the total size of the messages ready to deliver from the store to the durable subscriber- Parameters:
clientId-subscriberName-- Returns:
- Throws:
IOException
-
getMessageStoreSubStatistics
MessageStoreSubscriptionStatistics getMessageStoreSubStatistics()The subscription metrics contained in this store- Returns:
-
lookupSubscription
org.apache.activemq.command.SubscriptionInfo lookupSubscription(String clientId, String subscriptionName) throws IOException Finds the subscriber entry for the given consumer info- Parameters:
clientId-subscriptionName-- Returns:
- the SubscriptionInfo
- Throws:
IOException
-
getAllSubscriptions
Lists all the durable subscriptions for a given destination.- Returns:
- an array SubscriptionInfos
- Throws:
IOException
-
addSubscription
void addSubscription(org.apache.activemq.command.SubscriptionInfo subscriptionInfo, boolean retroactive) throws IOException Inserts the subscriber info due to a subscription change If this is a new subscription and the retroactive is false, then the last message sent to the topic should be set as the last message acknowledged by they new subscription. Otherwise, if retroactive is true, then create the subscription without it having an acknowledged message so that on recovery, all message recorded for the topic get replayed.- Parameters:
subscriptionInfo-retroactive-- Throws:
IOException
-
recoverExpired
Map<SubscriptionKey,List<org.apache.activemq.command.Message>> recoverExpired(Set<SubscriptionKey> subs, int maxBrowse, MessageRecoveryListener listener) throws Exception Iterates over the pending messages in a topic and recovers any expired messages found for each of the subscriptions up to the maximum number of messages to search. Only subscriptions that have at least 1 expired message will be returned in the map.
The expiry listener is only used to verify if there is space. Messages that are expired and will be added to 1 or more subscription in the returned map will be passed to the callback. The callback will only be called once per each unique message.- Parameters:
subs- The subscription keys to check for expired messagesmaxBrowse- The maximum number of messages to checklistener-- Returns:
- Expired messages for each subscription
- Throws:
Exception
-