http://www.activemq.com/site/activemq-c-clients.html Above sample,I want finish durable subscription.I don't konw how about modification. I change createQueue() to createTopic(),but only archieve non-durable subscription. If I change main function to follow three function,I will receive nothing. void Produce() { HelloWorldProducer producer( 5 ); Thread producerThread( &producer ); producerThread.start(); producerThread.join(); } void Consumer() { HelloWorldConsumer consumer( 3000 ); Thread consumerThread( &consumer ); consumerThread.start(); consumerThread.join(); } int main(int argc, char* argv[]) { Produce(); Consumer(); } How can I do?
Base on sample, I add code(setCMSExpiration function) for message livetime.But receive nothing too. SOS -- View this message in context: http://www.nabble.com/about-durable-subscription-tf2620113.html#a7311797 Sent from the ActiveMQ - User mailing list archive at Nabble.com.
