我使用@ stomp / ng2-stompjs与RabbitMQ一起工作
拥有一个发布者
this.rxStompService.publish({ destination: this.queue, headers: {receipt: receiptId}, body: message });
,并且可以有多个订阅者
this.rxStompService.watch(this.queue).subscribe((message: Message) => {
this.receivedMessages.push(message.body);
});
目前,如果我在浏览器中打开了2个页面,则只有其中一个页面会收到该消息。如何设置它以向所有订户广播?