Many subscriptions to a single queue with RabbitMQ STOMP

rabbitmq, stomp

Solution

See Documentation:User generated queue names for Topic and Exchange destinations

The header `x-queue-name` specified queue name should binding to same queue if there exist, but will exist multiple subscription on client.

The different between AMQP and STOMP concept not compatible in some ways.

Problem

Is it possible to bind a single queue to many topics using RabbitMQ STOMP client? Each time a client sending SUBSCRIBE frame server creates a new queue for it, it makes usage of "prefetch-count" useless for me, because it applies to each subscription individually. I am just looking for any way to get messages with many topics in the single queue via RabbitMQ Web-STOMP. Any ideas?

Original source