implement acknowledgeReference() for TopicReferenceStore

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@584862 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Davies 2007-10-15 19:29:59 +00:00
parent 487e694152
commit c5f251ceab
1 changed files with 7 additions and 0 deletions

View File

@ -249,4 +249,11 @@ public class JPATopicReferenceStore extends JPAReferenceStore implements TopicRe
subscriberLastMessageMap.remove(id);
}
public boolean acknowledgeReference(ConnectionContext context,
String clientId, String subscriptionName, MessageId messageId)
throws IOException {
acknowledge(context, clientId, subscriptionName, messageId);
return true;
}
}