Marcus reported on the mailing list that we need to provide dispatching behaviour like 3.x did to work on webshere 5.x

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@358824 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2005-12-23 16:12:49 +00:00
parent 2c4274b997
commit a2601e64fe
2 changed files with 8 additions and 0 deletions

View File

@ -347,4 +347,8 @@ public class ActiveMQQueueSession implements QueueSession {
throw new IllegalStateException("Operation not supported by a QueueSession"); throw new IllegalStateException("Operation not supported by a QueueSession");
} }
public QueueSession getNext() {
return next;
}
} }

View File

@ -347,4 +347,8 @@ public class ActiveMQTopicSession implements TopicSession {
public void unsubscribe(String name) throws JMSException { public void unsubscribe(String name) throws JMSException {
next.unsubscribe(name); next.unsubscribe(name);
} }
public TopicSession getNext() {
return next;
}
} }