mirror of https://github.com/apache/activemq.git
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:
parent
2c4274b997
commit
a2601e64fe
|
@ -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;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue