mirror of https://github.com/apache/activemq.git
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:
parent
487e694152
commit
c5f251ceab
|
@ -249,4 +249,11 @@ public class JPATopicReferenceStore extends JPAReferenceStore implements TopicRe
|
||||||
subscriberLastMessageMap.remove(id);
|
subscriberLastMessageMap.remove(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean acknowledgeReference(ConnectionContext context,
|
||||||
|
String clientId, String subscriptionName, MessageId messageId)
|
||||||
|
throws IOException {
|
||||||
|
acknowledge(context, clientId, subscriptionName, messageId);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue