Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了几个消息队列并将大量消息涌入其中,但我想在整个 Msmq 大小达到一定限制后停止流入。
提前致谢。
您可以设置队列的配额,这样您就可以设置要为队列分配的最大空间。
当您写入队列时,当配额用完时,您将收到 MessageQueueException 消息“资源不足以执行操作”。
如果您想从代码中读取配额,请查看MessageQueue.MaximumQueueSize。