<bdo id='FvE67'></bdo><ul id='FvE67'></ul>
  1. <i id='FvE67'><tr id='FvE67'><dt id='FvE67'><q id='FvE67'><span id='FvE67'><b id='FvE67'><form id='FvE67'><ins id='FvE67'></ins><ul id='FvE67'></ul><sub id='FvE67'></sub></form><legend id='FvE67'></legend><bdo id='FvE67'><pre id='FvE67'><center id='FvE67'></center></pre></bdo></b><th id='FvE67'></th></span></q></dt></tr></i><div id='FvE67'><tfoot id='FvE67'></tfoot><dl id='FvE67'><fieldset id='FvE67'></fieldset></dl></div>
    <tfoot id='FvE67'></tfoot>

      <small id='FvE67'></small><noframes id='FvE67'>

      <legend id='FvE67'><style id='FvE67'><dir id='FvE67'><q id='FvE67'></q></dir></style></legend>
    1. 从客户端检查 RabbitMQ 队列大小

      时间:2023-08-24

      1. <small id='Q1b6a'></small><noframes id='Q1b6a'>

        <legend id='Q1b6a'><style id='Q1b6a'><dir id='Q1b6a'><q id='Q1b6a'></q></dir></style></legend>

            <i id='Q1b6a'><tr id='Q1b6a'><dt id='Q1b6a'><q id='Q1b6a'><span id='Q1b6a'><b id='Q1b6a'><form id='Q1b6a'><ins id='Q1b6a'></ins><ul id='Q1b6a'></ul><sub id='Q1b6a'></sub></form><legend id='Q1b6a'></legend><bdo id='Q1b6a'><pre id='Q1b6a'><center id='Q1b6a'></center></pre></bdo></b><th id='Q1b6a'></th></span></q></dt></tr></i><div id='Q1b6a'><tfoot id='Q1b6a'></tfoot><dl id='Q1b6a'><fieldset id='Q1b6a'></fieldset></dl></div>

            • <bdo id='Q1b6a'></bdo><ul id='Q1b6a'></ul>
                <tbody id='Q1b6a'></tbody>
              <tfoot id='Q1b6a'></tfoot>
                本文介绍了从客户端检查 RabbitMQ 队列大小的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                有谁知道是否有办法从客户端应用程序检查 RabbitMQ 队列中的消息数量?

                Does anyone know if there's a way to check the number of messages in a RabbitMQ queue from a client application?

                我正在使用 .NET 客户端库.

                I'm using the .NET client library.

                推荐答案

                你可以通过客户端实际检索这个.

                You can actually retrieve this via the client.

                当你执行 queue_declare 操作时,RabbitMQ 返回一个包含三个值的元组:(, , ).queue_declarepassive 参数允许您在不修改服务器状态的情况下检查队列是否存在,因此您可以将 queue_declare 一起使用被动 选项来检查队列长度.

                When you perform a queue_declare operation, RabbitMQ returns a tuple with three values: (<queue name>, <message count>, <consumer count>). The passive argument to queue_declare allows you to check whether a queue exists without modifying the server state, so you can use queue_declare with the passive option to check the queue length.

                不确定 .NET,但在 Python 中,它看起来像这样:

                Not sure about .NET, but in Python, it looks something like this:

                name, jobs, consumers = chan.queue_declare(queue=queuename, passive=True)
                

                这篇关于从客户端检查 RabbitMQ 队列大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:从静态工厂类访问 ASP.NET Core DI 容器 下一篇:使用用户名和密码时 RabbitMQ C# 连接问题

                相关文章

                最新文章

                <legend id='q5DHn'><style id='q5DHn'><dir id='q5DHn'><q id='q5DHn'></q></dir></style></legend>

                <i id='q5DHn'><tr id='q5DHn'><dt id='q5DHn'><q id='q5DHn'><span id='q5DHn'><b id='q5DHn'><form id='q5DHn'><ins id='q5DHn'></ins><ul id='q5DHn'></ul><sub id='q5DHn'></sub></form><legend id='q5DHn'></legend><bdo id='q5DHn'><pre id='q5DHn'><center id='q5DHn'></center></pre></bdo></b><th id='q5DHn'></th></span></q></dt></tr></i><div id='q5DHn'><tfoot id='q5DHn'></tfoot><dl id='q5DHn'><fieldset id='q5DHn'></fieldset></dl></div>

                <small id='q5DHn'></small><noframes id='q5DHn'>

              • <tfoot id='q5DHn'></tfoot>
                  • <bdo id='q5DHn'></bdo><ul id='q5DHn'></ul>