Sure here is how I create multiple topics
Void CreateDynamicTopic(int con)
{
std::string queue_name = std::string("amq.topic/") + "Symbol_Topic_" +
boost::lexical_cast<std::string>(con);
std::string sender_string = queue_name +";{node:{type:topic}}";
connection = qpid::messaging::Connection("127.0.0.1");
connection.open();
connection.setOption("tcp-nodelay", true);
Session session = connection.createSession();
sender = session.createSender(sender_string) ;
sender.setCapacity(sender_capacity);
}
for(int i=0 ; i<900;i++)
{
CreateDynamicQueue(i)
}
I wanted to know if there could be a faster way that I could just pass a
whole list to Qpid and it creates topics from that list
On Thu, Sep 12, 2013 at 11:21 PM, NimbusParc <[email protected]> wrote:
> -------------Gordon Sim wrote-----------------
> >[Both the c++ and java brokers are still heavily based on the old pre
> >-1.0 AMQP model of queues, exchanges and bindings which didn't have an
> >explicit concept of 'topic'. The common usage though is to have an
> >exchange for a topic, with the type chosen by the need for subscribers
> >to filter on particular subtopics or to dynamically create distinct
> topics].
>
> +1
>
>
>
> --
> View this message in context:
> http://qpid.2158936.n2.nabble.com/Create-a-collection-of-topics-tp7597987p7598154.html
> Sent from the Apache Qpid users mailing list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>