在处理 NServiceBus 消息时,是否可以查看输入队列?
我有一个使用 NServiceBus 来处理传入消息的 Windows 服务。 在处理消息时,我想检查队列中是否还有其他剩余消息需要处理。 解决这个问题的最佳方法是什么?
I have a Windows service using NServiceBus to handle incoming messages.
While processing a message, I would like to check to see if there are any other remaining messages on the queue to process.
What is the best way to approach this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于这个特定场景,我想说传奇可能是合适的,它是由收到的第一条消息创建的,打开一个超时(假设一分钟),收集该时间段内的所有消息,然后 Bus.SendLocal 是一条消息包含另一个处理程序为其创建电子表格并上传的所有行。
For this specific scenario I'd say that a saga could be appropriate where it is created by the first message received, opens a timeout (for let's say one minute), collects all messages during that period of time, then Bus.SendLocal's a message containing all rows, for which another handler creates the spreadsheet and uploads.
由于
NServiceBus
使用MSMQ
,因此您可以使用System.Messaging
中的方法。其中包括我目前正在研究的一种修改方法,用于进行一种批处理。
在编辑器中自行修改。希望它仍然可以编译:)
顺便说一句,在这里找到了类似的讨论:
http://jopinblog.wordpress.com/2008/03/12/counting-messages-in-an-msmq-messagequeue-from-c/
Since,
NServiceBus
is usingMSMQ
, you can use the methods fromSystem.Messaging
.Included is a modified method, I'm currently working on, to do a kind of batch processing.
Modified here itself in the editor. Hope it still compiles :)
Found a similar discussion here, by the way:
http://jopinblog.wordpress.com/2008/03/12/counting-messages-in-an-msmq-messagequeue-from-c/