gpt4 book ai didi

c# - 如何通过Stomp.js设置回复主题

转载 作者:行者123 更新时间:2023-12-03 12:04:32 37 4
gpt4 key购买 nike

在使用 NMS API 的 C# 中,我们以这种方式为 ActiveMQ 设置响应主题

IDestination temp = session.CreateTemporaryTopic();
ITopic consumer = session.CreateConsumer(temp);

在发送消息时我们这样设置......

TextMessage reqMessage = session.CreateTextMessage(message);
reqMessage.NMSReplyTo = temp;

我们如何使用 Stomp.js 做同样的事情?

最佳答案

大多数 STOMP 操作都是使用您发送的消息中放置的特定 header 完成的。在这种情况下,“reply-to” header 指示接收客户端应发送其响应的地址。因此,模式是发送带有“回复” header 集的消息,具体取决于您使用的库:

stomp.subscribe("/temp-queue/response-queue")
stomp.publish("/queue/work-queue", "WORK", {"reply-to" => "/temp-queue/response-queue"})

由于您使用的是临时主题,因此您必须确保在发送响应消息之前有订阅者,否则将无法获得所有回复。

关于c# - 如何通过Stomp.js设置回复主题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25237309/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com