如何在nodejs中为zeromq设置套接字选项
在其他语言中,它的 socket.setsockopt 但这似乎不适用于 https://github.com/JustinTulloss /zeromq.node 有人有这方面的经验吗?
in other languages its socket.setsockopt but that doesn't seem to work for https://github.com/JustinTulloss/zeromq.node anyone have any experience with this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来该库将选项公开为 getter 和 setter。因此,要打印 sendBufferSize,您应该能够执行以下操作。
查看第 80 行左右的代码 https://github.com/JustinTulloss/ Zeromq.node/blob/master/zeromq.js
It looks like that library exposes the options as getters and setters. So to print the sendBufferSize you should be able to do the following.
Check out the code around line 80 https://github.com/JustinTulloss/zeromq.node/blob/master/zeromq.js