主动 MQ CPP。监听器如何工作?

发布于 2024-12-08 23:25:18 字数 222 浏览 0 评论 0原文

Active MQ CPP

当我在ActiveMQ-CPP中为特定队列注册侦听器时,ActiveMQ服务器如何将消息发送回客户端(当消息可用时)?具体来说,是不是每次都向客户端打开一个新的连接来推送消息?从服务器到客户端的连接是否可控(端口号、一个连接与多个连接等)?

请注意,这与客户端向服务器(队列/主题)注册侦听器无关。这是相反的。

谢谢。

Active MQ CPP:

When I register a listener for a particular Queue in ActiveMQ-CPP, How does the ActiveMQ server send the message back to the client (when the message is available)? Specifically, does it open a new connection every time to the client to push the message? Is the connection from Server to client controllable (port number, one connection vs. many connections etc)?

Please note that this not about client registering a listener to the server (queue/topic). This is the other way round.

Thank you.

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

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

发布评论

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

评论(1

横笛休吹塞上声 2024-12-15 23:25:18

客户端与代理保持开放连接。当消息可用于分派时,代理将使用此连接将它们发送到客户端。传输选项允许您在客户端连接上进行配置,请参阅配置页面。

The client maintains an open connection to the broker. When messages are available for dispatch the broker sends them to the client using this connection. The transport options allow you to configure things on the client connection, see the configuration page.

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