|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.activemq.store.kahadaptor.KahaTopicMessageStore
public class KahaTopicMessageStore
| Constructor Summary | |
|---|---|
KahaTopicMessageStore(Store store,
ListContainer messageContainer,
ListContainer ackContainer,
MapContainer subsContainer,
ActiveMQDestination destination)
|
|
| Method Summary | |
|---|---|
void |
acknowledge(ConnectionContext context,
java.lang.String clientId,
java.lang.String subscriptionName,
MessageId messageId)
Stores the last acknowledged messgeID for the given subscription so that we can recover and commence dispatching messages from the last checkpoint |
void |
addMessage(ConnectionContext context,
Message message)
Adds a message to the message store |
void |
addMessageReference(ConnectionContext context,
MessageId messageId,
long expirationTime,
java.lang.String messageRef)
Adds a message reference to the message store |
void |
addSubsciption(java.lang.String clientId,
java.lang.String subscriptionName,
java.lang.String selector,
boolean retroactive)
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. |
protected void |
addSubscriberMessageContainer(java.lang.Object key)
|
void |
delete()
|
void |
deleteSubscription(java.lang.String clientId,
java.lang.String subscriptionName)
|
SubscriptionInfo[] |
getAllSubscriptions()
Lists all the durable subscirptions for a given destination. |
ActiveMQDestination |
getDestination()
The destination that the message store is holding messages for. |
Message |
getMessage(MessageId identity)
Looks up a message using either the String messageID or the messageNumber. |
int |
getMessageCount(java.lang.String clientId,
java.lang.String subscriberName)
Get the number of messages ready to deliver from the store to a durable subscriber |
java.lang.String |
getMessageReference(MessageId identity)
Looks up a message using either the String messageID or the messageNumber. |
MessageId |
getNextMessageIdToDeliver(java.lang.String clientId,
java.lang.String subscriptionName,
MessageId id)
Get the next messageId to deliver to a subscriber after the MessageId provided |
MessageId |
getPreviousMessageIdToDeliver(java.lang.String clientId,
java.lang.String subscriptionName,
MessageId id)
Get the previous messageId to deliver to a subscriber before the MessageId provided |
protected java.lang.String |
getSubscriptionKey(java.lang.String clientId,
java.lang.String subscriberName)
|
SubscriptionInfo |
lookupSubscription(java.lang.String clientId,
java.lang.String subscriptionName)
Finds the subscriber entry for the given consumer info |
void |
recover(MessageRecoveryListener listener)
Recover any messages to be delivered. |
void |
recoverNextMessages(java.lang.String clientId,
java.lang.String subscriptionName,
MessageId lastMessageId,
int maxReturned,
MessageRecoveryListener listener)
For an active subscription - retrieve messages from the store for the subscriber after the lastMessageId messageId |
void |
recoverSubscription(java.lang.String clientId,
java.lang.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. |
void |
removeAllMessages(ConnectionContext context)
Removes all the messages from the message store. |
void |
removeMessage(ConnectionContext context,
MessageAck ack)
Removes a message from the message store. |
void |
resetBatching(java.lang.String clientId,
java.lang.String subscriptionName,
MessageId nextToDispatch)
A hint to the Store to reset any batching state for a durable subsriber |
void |
setUsageManager(UsageManager usageManager)
|
void |
start()
|
void |
stop()
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public KahaTopicMessageStore(Store store,
ListContainer messageContainer,
ListContainer ackContainer,
MapContainer subsContainer,
ActiveMQDestination destination)
throws java.io.IOException
java.io.IOException| Method Detail |
|---|
public void addMessage(ConnectionContext context,
Message message)
throws java.io.IOException
MessageStore
addMessage in interface MessageStorecontext - TODO
java.io.IOException
public void acknowledge(ConnectionContext context,
java.lang.String clientId,
java.lang.String subscriptionName,
MessageId messageId)
throws java.io.IOException
TopicMessageStore
acknowledge in interface TopicMessageStorejava.io.IOException
public SubscriptionInfo lookupSubscription(java.lang.String clientId,
java.lang.String subscriptionName)
throws java.io.IOException
TopicMessageStore
lookupSubscription in interface TopicMessageStorejava.io.IOException
public void addSubsciption(java.lang.String clientId,
java.lang.String subscriptionName,
java.lang.String selector,
boolean retroactive)
throws java.io.IOException
TopicMessageStore
addSubsciption in interface TopicMessageStorejava.io.IOException
public void deleteSubscription(java.lang.String clientId,
java.lang.String subscriptionName)
deleteSubscription in interface TopicMessageStore
public void recoverSubscription(java.lang.String clientId,
java.lang.String subscriptionName,
MessageRecoveryListener listener)
throws java.lang.Exception
TopicMessageStore
recoverSubscription in interface TopicMessageStorejava.lang.Exception
public void recoverNextMessages(java.lang.String clientId,
java.lang.String subscriptionName,
MessageId lastMessageId,
int maxReturned,
MessageRecoveryListener listener)
throws java.lang.Exception
TopicMessageStore
recoverNextMessages in interface TopicMessageStorejava.lang.Exceptionpublic void delete()
public SubscriptionInfo[] getAllSubscriptions()
throws java.io.IOException
TopicMessageStore
getAllSubscriptions in interface TopicMessageStorejava.io.IOException
protected java.lang.String getSubscriptionKey(java.lang.String clientId,
java.lang.String subscriberName)
protected void addSubscriberMessageContainer(java.lang.Object key)
throws java.io.IOException
java.io.IOException
public int getMessageCount(java.lang.String clientId,
java.lang.String subscriberName)
throws java.io.IOException
TopicMessageStore
getMessageCount in interface TopicMessageStorejava.io.IOException
public void addMessageReference(ConnectionContext context,
MessageId messageId,
long expirationTime,
java.lang.String messageRef)
throws java.io.IOException
MessageStore
addMessageReference in interface MessageStorecontext - messageId - expirationTime - messageRef -
java.io.IOExceptionMessageStore.addMessageReference(org.apache.activemq.broker.ConnectionContext,
org.apache.activemq.command.MessageId, long, java.lang.String)public ActiveMQDestination getDestination()
MessageStore
getDestination in interface MessageStoreMessageStore.getDestination()
public Message getMessage(MessageId identity)
throws java.io.IOException
MessageStore
getMessage in interface MessageStoreidentity -
java.io.IOExceptionMessageStore.getMessage(org.apache.activemq.command.MessageId)
public java.lang.String getMessageReference(MessageId identity)
throws java.io.IOException
MessageStore
getMessageReference in interface MessageStoreidentity -
java.io.IOExceptionMessageStore.getMessageReference(org.apache.activemq.command.MessageId)
public void recover(MessageRecoveryListener listener)
throws java.lang.Exception
MessageStore
recover in interface MessageStorejava.lang.ExceptionMessageStore.recover(org.apache.activemq.store.MessageRecoveryListener)
public void removeAllMessages(ConnectionContext context)
throws java.io.IOException
MessageStore
removeAllMessages in interface MessageStorecontext -
java.io.IOExceptionMessageStore.removeAllMessages(org.apache.activemq.broker.ConnectionContext)
public void removeMessage(ConnectionContext context,
MessageAck ack)
throws java.io.IOException
MessageStore
removeMessage in interface MessageStorecontext - ack -
java.io.IOExceptionMessageStore.removeMessage(org.apache.activemq.broker.ConnectionContext,
org.apache.activemq.command.MessageAck)public void setUsageManager(UsageManager usageManager)
setUsageManager in interface MessageStoreusageManager - MessageStore.setUsageManager(org.apache.activemq.memory.UsageManager)
public void start()
throws java.lang.Exception
start in interface Servicejava.lang.ExceptionService.start()
public void stop()
throws java.lang.Exception
stop in interface Servicejava.lang.ExceptionService.stop()
public void resetBatching(java.lang.String clientId,
java.lang.String subscriptionName,
MessageId nextToDispatch)
TopicMessageStore
resetBatching in interface TopicMessageStoreclientId - subscriptionName - org.apache.activemq.store.TopicMessageStore#resetBatching(java.lang.String, java.lang.String)
public MessageId getNextMessageIdToDeliver(java.lang.String clientId,
java.lang.String subscriptionName,
MessageId id)
throws java.io.IOException
TopicMessageStore
getNextMessageIdToDeliver in interface TopicMessageStoreclientId - subscriptionName - id -
java.io.IOExceptionTopicMessageStore.getNextMessageIdToDeliver(java.lang.String, java.lang.String,
org.apache.activemq.command.MessageId)
public MessageId getPreviousMessageIdToDeliver(java.lang.String clientId,
java.lang.String subscriptionName,
MessageId id)
throws java.io.IOException
TopicMessageStore
getPreviousMessageIdToDeliver in interface TopicMessageStoreclientId - subscriptionName - id -
java.io.IOExceptionTopicMessageStore.getPreviousMessageIdToDeliver(java.lang.String,
java.lang.String, org.apache.activemq.command.MessageId)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||