如何监控队列的消息到达时间?

发布于 2024-10-30 17:56:40 字数 78 浏览 0 评论 0原文

我正在寻找特定 MSMQ 队列的 FileSystemWatcher 的等效项。是否存在类似的东西或者我需要自己推出?

谢谢!

I'm looking for the equivalent of FileSystemWatcher for a specific MSMQ queue. Does something like that exist or do I need to roll my own?

Thanks!

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

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

发布评论

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

评论(2

无语# 2024-11-06 17:56:40

这基本上不是 MQReceiveMessage 做?对于引用 C 文档,我深表歉意,但所有这些功能都应该可用于 .NET。本质上,您可以使用此函数来查看队列中的消息:

阅读消息时,您可以查看(不删除它们)或检索(删除它们)队列中的消息。

您可以使用它来阻止直到消息准备好:

处理会在适用的线程中阻塞,直到在队列中找到消息(这是默认设置)。

显然,您也可以使用此函数异步接收消息,在这种情况下,它的操作方式与 FileSystemWatcher 非常相似。

Isn't that basically what MQReceiveMessage does? My apologies for referencing the C docs, but all of this functionality should be available to .NET. Essentially you can use this function to peek at messages in the queue:

When reading messages, you can either peek at (not removing them) or retrieve the messages (removing them) in the queue.

And you can use it to block until a message is ready:

Processing is blocked in the applicable thread until a message is found in the queue (this is the default setting).

Apparently you can also use this function to receive messages asynchronously, in which case it would operate much like the FileSystemWatcher.

╭ゆ眷念 2024-11-06 17:56:40

您可以使用 MSMQ 触发器。请参阅 MSDN 此处

从第一段开始:

消息队列触发器允许您将到达目标队列的传入消息与一个或多个 COM 组件或独立可执行程序的功能相关联。这些触发器可用于定义可在消息到达队列时调用的业务规则,而无需执行任何其他编程。应用程序开发人员不再必须编写任何基础设施代码来提供这种消息处理功能。

You could use MSMQ Triggers. See MSDN here.

From the first paragraph:

Message Queuing triggers allow you to associate the arrival of incoming messages at a destination queue with the functionality of one or more COM components or stand-alone executable programs. These triggers can be used to define business rules that can be invoked when a message arrives at the queue without doing any additional programming. Application developers no longer must write any infrastructure code to provide this kind of message-handling functionality.

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