-
Re: Two or more consumers for different topics
Hi @murillocg, Queues are generally for receiving persistent messages. If you need to receive direct/non-persistent messages, create a subscription to each of the topics you want. The non-persistent …1 -
Re: How to achieve message flow control in the node.js consumer for guaranteed messages?
Hi @soham, Rather than change the window size or implement a pull pattern, the best approach is probably to use the message consumer stop method. This stops delivery of messages to your application a…1 -
Re: JMS destination showing as topic, eventhough the message is consumed from queue
Hi @Navmi, If I understand you correctly, you have a message that has been produced to a topic. The message was then attracted to a queue, using a subscription on that queue. If this is the case, the…3 -
Re: Solace JCSMP Streaming - Code Sample
Hi @slsbel, Have you seen the SolaceSamples Github repo? For instance, QueueConsumer.java implements a streaming consumer. This will use the default persistent window, to change this to 100 (if you r…1 -
Re: Infinite Loop Message Consumer
This sounds like something very broken in your code. First, set up a Dead Message Queue, add the "DMQ Eligible" flag to your message publisher and set the queue max-redelivery count. You ne…2