在 MSMQ 中通过任意标识符查找?

发布于 2024-10-16 15:11:40 字数 98 浏览 1 评论 0原文

有没有办法为 MSMQ 中的消息分配标识符,然后通过该标识符找到该消息(如果它仍在队列中)?

更具体地说,它需要是我控制下的唯一标识符,而不是 MSMQ 分配的东西。

Is there a way to assign an identifier to a message in MSMQ, then later locate that message (if it's still in the queue) by that identifier?

Being more specific, it need to be a unique identifier under my control, not something assigned by MSMQ.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你的往事 2024-10-23 15:11:40

您可以使用消息标签属性,如果您想要使用在发送消息之前创建的标识符。

消息 LookupID 标识符在消息已发送。

You could use the messages Label property if you want to use an identifier that is created before the message is sent.

The message LookupID identifier is not accessible until the message has been sent.

寄居人 2024-10-23 15:11:40

为什么不使用 CorrelationId?

var message = new Message(new Messageval(), new BinaryMessageFormatter());
message.CorrelationId = messageId;
queue.Send(message);

然后像这样检索消息:

var resp = (Messageval) queue.ReceiveByCorrelationId(messageId,
                                                     TimeSpan.FromSeconds(30))
                             .Body;

CorrelationId 需要恰好包含 20 个字节,否则分配时将引发异常。

Why not use CorrelationId?

var message = new Message(new Messageval(), new BinaryMessageFormatter());
message.CorrelationId = messageId;
queue.Send(message);

And then retrieve the message like this:

var resp = (Messageval) queue.ReceiveByCorrelationId(messageId,
                                                     TimeSpan.FromSeconds(30))
                             .Body;

The CorrelationId needs to consist of exactly 20 bytes or else an exception will be thrown upon assignment.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文