如何编写多线程 TCP/IP 发送器代码
我需要一个 TCP/IP 发送器,它将文本文件的内容作为字节流发送到一组可配置的 IP 和端口。最好是可以包含在一个线程中并可配置为多个目标的东西。我该怎么做?
I need a TCP/IP sender that will throw the contents of a text file as a byte stream to a configurable set of IP and ports. Preferably something that can be contained in just one thread and configurable for several destinations. How should I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
考虑使用消息队列,而不是提出自己的发送机制。它们非常易于使用,并且大多数具有出色的性能(例如 zeroMQ 每秒可以发送 470 万条消息,64字节消息)
Instead of coming up with your own sending mechanism, consider using message queues. They are very easy to use and most have excellent performance(e.g. zeroMQ can send 4.7 million messages per second for a 64 byte message)