如何以一定的间隔发送HTTPClient post消息
我想向客户端发送 http post 消息(我可以毫无问题地做到这一点)。 但我想不断地发送这个消息。举例来说,我想每 5 分钟向客户端发送此消息一次。有什么办法可以做到这一点吗? 提前致谢..
I want to send http post message to the client (which i can do without any problem).
But I want to send this message continously. Say for instance every 5 mintutes I want to send this message to client. Is there any way to do that?
thanks in advance..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许,最简单的方法是使用 ScheduledThreadPoolExecutor (注意,以下代码永远不会退出):
Probably, the easiest way is to use a ScheduledThreadPoolExecutor (attention, the following code will never exit):