mirror of https://github.com/apache/activemq.git
added quick test for cleanSession=false and wildcard sub for MQTT from IRC chat
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1513655 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7e28d2a948
commit
4dc1ddcd21
|
@ -92,8 +92,9 @@ public class MQTTTest extends AbstractMQTTTest {
|
||||||
final BlockingConnection connection = mqtt.blockingConnection();
|
final BlockingConnection connection = mqtt.blockingConnection();
|
||||||
connection.connect();
|
connection.connect();
|
||||||
|
|
||||||
Topic[] topics = {new Topic("TopicA", QoS.EXACTLY_ONCE), new Topic("TopicB", QoS.EXACTLY_ONCE)};
|
Topic[] topics = {new Topic("Topic/A", QoS.EXACTLY_ONCE), new Topic("Topic/B", QoS.EXACTLY_ONCE)};
|
||||||
connection.subscribe(topics);
|
Topic[] wildcardTopic = {new Topic("Topic/#", QoS.AT_LEAST_ONCE)};
|
||||||
|
connection.subscribe(wildcardTopic);
|
||||||
|
|
||||||
for (Topic topic : topics) {
|
for (Topic topic : topics) {
|
||||||
connection.publish(topic.name().toString(), payload, QoS.AT_LEAST_ONCE, false);
|
connection.publish(topic.name().toString(), payload, QoS.AT_LEAST_ONCE, false);
|
||||||
|
|
Loading…
Reference in New Issue