如何设置zmq套接字超时
我有在 ZMQ_REQ 上下文中使用 zmq 的客户端和服务器应用程序。我遇到的情况是,当服务器组件出现故障或不可用时,客户端将等待,直到它可以发送消息。有没有办法在客户端级别设置最大等待时间或超时?
I've got client and server applications using zmq in the ZMQ_REQ context. What I'm experiencing is that when the server component goes down or is unavailable, the client will wait until it is available to send its message. Is there a way to set a max wait time or timeout at the client level?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜你可以将
zmq_poll(3)
与超时大于零。I would guess you can use the
zmq_poll(3)
with a timeout greater then zero.