如何以一定的间隔发送HTTPClient post消息

发布于 2024-12-13 01:35:32 字数 106 浏览 1 评论 0原文

我想向客户端发送 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧情勿念 2024-12-20 01:35:32

也许,最简单的方法是使用 ScheduledThreadPoolExecutor (注意,以下代码永远不会退出):

    Executors.newScheduledThreadPool(1).scheduleAtFixedRate(new Runnable() {

        @Override
        public void run() {
            // your request code here

        }
    }, 0, 5, TimeUnit.MINUTES);

Probably, the easiest way is to use a ScheduledThreadPoolExecutor (attention, the following code will never exit):

    Executors.newScheduledThreadPool(1).scheduleAtFixedRate(new Runnable() {

        @Override
        public void run() {
            // your request code here

        }
    }, 0, 5, TimeUnit.MINUTES);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文