如何在服务器端计算每个用户的预定时间计算并立即通知客户端的各个用户?

发布于 2024-11-30 10:38:10 字数 222 浏览 1 评论 0原文

我的场景是

用户 A 已被分配任务。他已经知道该任务的时间线。在客户端,一旦用户 A 单击并下载文件以开始该任务,服务器应该执行某种计时器并立即通知客户端用户 A 剩余的到期时间。

以便用户可以意识到他/她的任务时间的减少。

将来可能有数百个用户可以连接到服务器,并且必须实现上述场景。所有与时间相关的计算都是基于服务器当前时间,

任何人都可以指导我如何实现这一点。

My scenario is

User A has been given a task. He already knows time line for that task.On client side Once the userA click and download a file to begin that task ,server should do some kind of timers and notify client user A about the remaining due time instantly.

so that user can aware of the decreaseing time of his/her task.

In future there may be hundred's of user can connect with server and has to acheive the above scenario.All time related calultion is based on server current time

can anybody guide me on how to implement this.

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

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

发布评论

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

评论(1

零度° 2024-12-07 10:38:10

Salaam,

您需要在 Servlet 中为每个用户实现一个计时器。

注意以下事项:

  • 知道 servlet 是多线程的,不要将计时器存储在全局变量(servlet 的范围/所有线程)上,而是存储在局部变量(请求/线程的范围)上,
  • 在 servlet init 中声明初始时间变量并作为全局变量。
  • 计时器将值(当前 - user.start - 初始)存储在特定于用户的 request.session 中,
  • 计时器可以通过客户端的 ajax 进行更新

希望它有帮助,

Salaam,

You need to implement a timer at your Servlet, per each user.

Care about the following:

  • Knowing that a servlet is multi-threaded, dont store the timer on a global variable (scope of servlet/all threads), but on local variable(scope of request/thread)
  • declare the initial time variable at servlet init and as global variable.
  • The timer stores the value (current - user.start - initial) in the request.session specific to the user
  • the timer can be updated via ajax from client side

Hope it helps,

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