Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Won't Fix
-
proton-0.9.1
-
None
-
Ubuntu Linux
-
Important
Description
It seems that Proton-J lacks the method to retrieve the address of a temporary queue created by Proton-J client application. The corresponding method exists in Proton-C like:
tempQueue.c
// Subscribe w/ temp queue, print out the temp queue's name pn_subscription_t * sub = NULL; if ((sub = pn_messenger_subscribe(messenger, "amqps://10.69.3.1/#")) == NULL) { printf("!!!queue %s does not exists\n",address); } printf("a subscribed address:%s\n",pn_subscription_address(sub));
However, in Proton-J, the Subscribe() method is defined as void.
Regards,
yf