如何根据响应时间循环设置计时器?

发布于 2024-12-12 02:19:49 字数 235 浏览 0 评论 0原文

我正在尝试使用 50 个 HTTP 请求的循环来归档以下测试:

  • 当收到当前请求的响应时,
  • 如果响应未在 60 秒内完成,则发出下一个请求,当前请求将终止,下一个请求将被终止。请求被执行。

我已经在其中放置了一个循环和一个恒定计时器。常量定时器的问题是它不关心请求的响应。因此,每个请求都是基于恒定时间而不是彼此的结果来执行的。

如果您知道该怎么做,请帮助我。多谢。

I'm trying to archive the following test with a loop of 50 HTTP requests:

  • when the response of the current request is received, the next request is made
  • if the response is not completed within 60 seconds, the current request is terminated and the next request is executed.

I have already put a loop and a constant timer in it. The problem with constant timer is that it does not care about the request's response. Hence each request is executed based on a constant time rather than each other's result.

Please help me if you know how to. Thanks alot.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

巴黎夜雨 2024-12-19 02:19:49

此处使用响应超时,而不是计时器。将响应超时设置为 60 秒即可。

Use response timeouts, not Timers here. Set Response Timeout to 60 seconds and that's it.

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