主动 MQ CPP。监听器如何工作?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
客户端与代理保持开放连接。当消息可用于分派时,代理将使用此连接将它们发送到客户端。传输选项允许您在客户端连接上进行配置,请参阅配置页面。
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.